/* =========================
   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;
  margin-top: 2rem;
}

.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;
}

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

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

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

.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: 768px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
}

/* =========================
   Mobile First
========================= */

.mobile-first {
  padding: 3rem 0;
}

.mobile-first h2 { margin-bottom: 1rem; }
.mobile-first p { max-width: 600px; margin-bottom: 1rem; }
.mobile-first-points { margin-top: 1.5rem; padding-left: 1.2rem; }
.mobile-first-points li { margin-bottom: 0.75rem; line-height: 1.4; }
.mobile-first-closer { margin-top: 3rem; font-weight: 500; font-size: larger;}

.phone {
	width: 300px;
	aspect-ratio: 9 / 19.5;
	margin: 0 auto;
	padding: 8px;
	border-radius: 32px;
	background: #111;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	position: relative;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* notch */
.phone::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 36%;
	height: 7px;
	background: #000;
	border-radius: 4px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .mobile-first {
    padding: 4rem 0;
  }

  .mobile-first p {
    max-width: 700px;
  }
}

