/* =========================
   Hero
========================= */

.hero { padding-top: 2rem; }
.hero-content { max-width: 600px; }

.hero .cta { 
  display: flex; 
  gap: 1rem; 
  margin-top: 2rem; 
}

.hero-visual {
  display: block;
  aspect-ratio: 3 / 2;
  height: auto;
  margin-top: 3rem;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: visible;
  box-shadow: var(--box-shadow-hover);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.laptop {
  background: #555;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.10);
  position: relative;
}

/* screen */
.laptop img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
}

/* base (subtle, don’t overdo it) */
.laptop::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 6px;
  background: #555;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .hero { padding-top: 4rem; }
  .hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-visual {
    margin-top: 0;
  }
}

/* =========================
   Services
========================= */

.services-intro {
  margin-bottom: 2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 400px;
  margin: 2rem auto 0;
}

.services-cards .service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}

.services-cards .service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.services-cards .service-card h3 {
  margin-bottom: 0.75rem;
}

.services-cards .service-card p {
  color: var(--color-text);
  text-align: left;
  max-width: 35ch;
  margin: 0 auto;
  text-align: left;
}

.services-cards .service-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
}

.service-icon {
  color: var(--primary-accent);
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(240, 213, 183, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-accent);
}

@media (min-width: 990px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: unset;
    margin: 2rem auto 0;
  }
}

@media (min-width: 1200px) {
  .services-cards {
    gap: 3rem;
  }
}

/* =========================
   Ongoing Support
========================= */

.web-guy {
  padding: 5rem 0;
}

.web-guy .container.split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.web-guy .split-content {
  width: 100%;
}

.web-guy h2 {
  max-width: 560px;
  margin-bottom: 1rem;
}

.web-guy p {
  max-width: 620px;
  margin-bottom: 1rem;
}

.web-guy .split-media {
  width: 100%;
  max-width: 520px;
}

.web-guy .split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

@media (min-width: 768px) {
  .web-guy {
    padding: 6rem 0;
  }

  .web-guy .container.split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .web-guy .split-content {
    flex: 1 1 0;
  }

  .web-guy .split-media {
    flex: 0 0 42%;
    max-width: 520px;
  }
}