/* === FEATURE SECTIONS === */
.feat {
  padding: var(--sp-xl) 0;
}

#features > section:nth-of-type(odd) { background: var(--paper-alt); }
#features > section:nth-of-type(even) { background: var(--paper-main); }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
}

/* Alternating direction: even sections reverse image/text */
.feat.alt .feat-grid { direction: rtl; }
.feat.alt .feat-grid > * { direction: ltr; }

/* Text column */
.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--seal-brown);
  font-weight: 700;
  margin-bottom: 18px;
}
.feat-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-green);
  letter-spacing: 0;
  line-height: 1;
}
.feat-divider {
  width: 20px;
  height: 1px;
  background: var(--seal-brown);
}

.feat-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--ink-brown);
  margin-bottom: 18px;
}

.feat-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: var(--seal-brown);
  margin-bottom: var(--sp-md);
}

.feat-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--ink-brown);
  line-height: 1.6;
}
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 2px var(--paper-main), 0 0 0 3px rgba(42, 92, 64, 0.3);
}
#features > section:nth-of-type(odd) .feat-list li::before {
  box-shadow: 0 0 0 2px var(--paper-alt), 0 0 0 3px rgba(42, 92, 64, 0.3);
}
#features > section:nth-of-type(even) .feat-list li::before {
  box-shadow: 0 0 0 2px var(--paper-main), 0 0 0 3px rgba(42, 92, 64, 0.3);
}
.feat-list b { color: var(--ink-brown); font-weight: 700; }

/* Visual column (phone + decorations) */
.feat-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.feat-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 2px dashed var(--seal-brown);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}
.feat-phone {
  position: relative;
  width: 260px;
  height: 540px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 9px;
  box-shadow: 0 30px 60px rgba(60, 46, 26, 0.25), 0 12px 24px rgba(60, 46, 26, 0.18);
  z-index: 2;
}
.feat-phone.tilt-l { transform: rotate(-3deg); }
.feat-phone.tilt-r { transform: rotate(3deg); }
.feat-phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 20px;
  background: #1A1A1A;
  border-radius: 11px;
  z-index: 2;
}
.feat-screen {
  width: 100%;
  height: 100%;
  border-radius: 31px;
  overflow: hidden;
  background: #FFF;
}
.feat-screen img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .feat-phone, .feat-phone.tilt-l, .feat-phone.tilt-r { transform: rotate(0deg); width: 220px; height: 450px; }
  .feat-ring { width: 300px; height: 300px; }
}
