/* =========================================================
   Home Page – Professional / Enterprise Polish
   Designed like a senior frontend architect
   ========================================================= */

/* ---------------------------------------------------------
   HERO LAYOUT
--------------------------------------------------------- */
.section:first-of-type {
  padding-top: 64px;
  padding-bottom: 56px;
}

.grid-2 {
  align-items: center;
}

/* ---------------------------------------------------------
   KICKER (SUBTLE, NOT FLASHY)
--------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: color-mix(in srgb, var(--text), transparent 15%);
  background: color-mix(in srgb, var(--surface), transparent 6%);
  border: 1px solid color-mix(in srgb, var(--border), transparent 25%);
}

.kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
}

/* ---------------------------------------------------------
   HERO TYPOGRAPHY
--------------------------------------------------------- */
.h1 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.grad-text {
  background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 72ch;
  line-height: 1.75;
  color: color-mix(in srgb, var(--text), transparent 22%);
}

/* ---------------------------------------------------------
   HERO CTA BUTTONS
--------------------------------------------------------- */
.section:first-of-type .btn {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
}

.section:first-of-type .btn--primary {
  box-shadow: 0 12px 32px rgba(124,58,237,.25);
}

/* =========================================================
   OUR CORE STRENGTHS (ENTERPRISE STYLE – NO TICKS)
========================================================= */
.section:first-of-type .surface {
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    var(--surface);
  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

/* Heading */
.section:first-of-type .surface h3 {
  margin-bottom: 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.section:first-of-type .surface .muted {
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ---------- CLEAN LIST (THIS IS THE KEY PART) ---------- */
.section:first-of-type .surface ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Each row */
.section:first-of-type .surface ul li {
  padding: 14px 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--text), transparent 12%);
}

/* Divider lines (like screenshot 3) */
.section:first-of-type .surface ul li:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--border), transparent 25%);
}

/* =========================================================
   SERVICES PREVIEW CARDS
========================================================= */
.section--alt .grid-3 .card {
  padding: 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.section--alt .grid-3 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.section--alt .grid-3 .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--surface), white 6%);
  border: 1px solid color-mix(in srgb, var(--border), transparent 25%);
}

/* =========================================================
   IMPACT HIGHLIGHTS
========================================================= */
.section--alt .grid-3.center .surface {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.section--alt .grid-3.center .surface .h2 {
  font-size: 48px;
  letter-spacing: -0.03em;
}

.section--alt .grid-3.center .surface .muted {
  font-weight: 600;
}

/* =========================================================
   CTA BLOCK – CLEAN & CONFIDENT
========================================================= */
.section .container.surface.center {
  padding: 40px !important;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    var(--surface);
  border: 1px solid color-mix(in srgb, var(--border), transparent 22%);
  box-shadow: 0 40px 110px rgba(0,0,0,.32);
}

.section .container.surface.center .lead {
  max-width: 85ch;
  margin: 0 auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .section:first-of-type {
    padding-top: 52px;
  }

  .section--alt .grid-3.center .surface .h2 {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .section .container.surface.center {
    padding: 28px !important;
  }
}
