/* ============================================
   FEATURES SECTION — "More Than Just A QR Menu"
   Height: 755px | Padding: 90px top / 50px bottom
   ============================================ */

.feat-section {
  background-color: #FEFDFA;
  padding: 90px 0 50px;
  box-sizing: border-box;
}

/* Inner container */
.feat-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ── Header ── */
.feat-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Tag — Inter SemiBold 16px LH30 LS1px #E29F29 */
.feat-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
}

/* Heading */
.feat-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 0px;
  color: #1A1A1A;
  margin: 0;
}

.feat-highlight {
  color: var(--primary);
}

/* ── Cards Grid ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}

/* Single card — W290 H309 | radius 8 | fill #FFF | stroke #F8F0E2 1px inside | shadow X0 Y0 Blur15 #000 8% */
.feat-card {
  background: #FFFFFF;
  border: 1px solid #F8F0E2;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  padding: 36px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-grid .feat-card:hover {
  box-shadow: 0 8px 32px rgba(226, 160, 48, 0.16);
  transform: translateY(-6px) !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important,
              box-shadow 0.25s ease !important;
}
.feat-card:hover .feat-card-title {
  color: var(--primary);
  transition: color 0.2s ease;
}

/* Icon box — 80×80 circle fill #FCF7EF */
.feat-icon-box {
  width: 80px;
  height: 80px;
  background: #FCF7EF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icon — 40×40 */
.feat-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Card title — Plus Jakarta Sans Bold 18px LH32 LS0 #000000 */
.feat-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #000000;
  margin: 0;
}

/* Divider under title — W30 H1 fill #E29F29 */
.feat-card-divider {
  width: 30px;
  height: 1px;
  background: #E29F29;
  border-radius: 0;
  flex-shrink: 0;
}

/* Card description — Inter Regular 16px LH28 LS0 */
.feat-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #343434;
  margin: 0;
  width: 80%;
}

/* ── Bottom Banner ── */
.feat-banner {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #F8F0E2;
  background-image: url('../images/img-bg.webp');
  background-size: cover;
  background-position: center;
  background-color: #FAF0E0;
  padding: 0 36px;
  box-sizing: border-box;
  gap: 40px;
}

/* QR icon circle */
.feat-banner-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-banner-qr {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

/* Divider line */
.feat-banner-divider {
  width: 2px;
  height: 56px;
  background: rgba(226, 160, 48, 0.4);
  flex-shrink: 0;
}

/* Banner text */
.feat-banner-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1A1A1A;
  margin: 0;
  width: 40%;
}

.feat-banner-accent {
  color: var(--primary);
}

/* ══════════════════════════════════════════════
   FEATURES — RESPONSIVE
══════════════════════════════════════════════ */

/* ≤ 1200px */
@media (max-width: 1200px) {
  .feat-inner   { padding: 0 32px; }
  .feat-heading { font-size: 40px; line-height: 50px; }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .feat-heading { font-size: 36px; line-height: 46px; }
  .feat-card    { padding: 28px 20px; }
  .feat-banner  { padding: 0 28px; }
}

/* ≤ 900px — 2×2 grid */
@media (max-width: 900px) {
  .feat-section { padding: 64px 0 40px; }
  .feat-inner   { padding: 0 24px; gap: 40px; align-items: center; }
  .feat-heading { font-size: 32px; line-height: 42px; text-align: center; }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .feat-banner { height: auto; padding: 24px 28px; width: 100%; }
  .feat-banner-text { font-size: 16px; line-height: 26px; width: auto; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .feat-heading { font-size: 28px; line-height: 38px; }
  .feat-tag     { font-size: 13px; }
  .feat-card    { padding: 24px 18px; gap: 12px; }
  .feat-card-title { font-size: 18px; }
  .feat-card-desc  { font-size: 15px; }
}

/* ≤ 600px — 1 column */
@media (max-width: 600px) {
  .feat-section { padding: 48px 0 36px; }
  .feat-inner   { padding: 0 16px; gap: 32px; align-items: center; }
  .feat-heading { font-size: 26px; line-height: 36px; text-align: center; }
  .feat-tag     { font-size: 12px; letter-spacing: 0.8px; text-align: center; }

  .feat-header  { align-items: center; text-align: center; }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .feat-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px 20px;
    gap: 14px;
    width: 100%;
  }

  .feat-card-desc { width: 100%; }

  .feat-card-divider { display: block; }

  .feat-banner {
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
    width: 100%;
  }

  .feat-banner-divider { display: none; }
  .feat-banner-text {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    width: 100%;
  }
}

/* ≤ 430px */
@media (max-width: 430px) {
  .feat-inner      { padding: 0 12px;}
  .feat-heading    { font-size: 30px; line-height: 40px; width: 70%;}
  .feat-card-title { font-size: 16px; }
  .feat-card-desc  { font-size: 14px; line-height: 22px; }
}
