/* ==========================================================================
   SendorX — features.css  (body class: .page-features)
   Scoped under .page-features.
   ========================================================================== */

/* ===== HERO ===== */
.page-features .hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 90px 0 40px;
    position: relative;
    overflow: visible;
}
.page-features .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,.18), transparent 70%);
    pointer-events: none;
}
.page-features .hero-inner {
    display: grid;
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.page-features .hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0px 0px 0px 0 !important;
    max-width: 620px;
}
.page-features .hero h1 .accent { color: var(--orange); }
.page-features .hero p.lead {
    font-size: 18px;
    color: rgba(255,255,255,.78);
    margin-bottom: 20px;
    max-width: 540px;
    line-height: 1.6;
}
.page-features .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; margin-bottom: 40px; }
.page-features .hero-visual { position: relative; z-index: 3; }
.page-features .hero-visual img.shot {
    width: 100%;
    max-width: 760px;
    height: auto;
    margin-bottom: -270px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}
.page-features .hero + .section { padding-top: 180px; }

/* ===== SECTIONS ===== */
.page-features .section { padding: 90px 0; }
.page-features .section-head { text-align: left; max-width: 720px; margin: 0px 50px 50px 50px; }
.page-features .section-head h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin: 0 0 14px; letter-spacing: -.5px; }
.page-features .section-head p { color: var(--muted); font-size: 17px; margin: 0; text-align: justify; }

/* ===== FEATURES — alternating rows ===== */
.page-features .feature-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; padding: 50px 0; border-bottom: 1px solid var(--line); }
.page-features .feature-row:last-child { border-bottom: 0; }
.page-features .feature-row.reverse { grid-template-columns: 1.2fr 1fr; }
.page-features .feature-row.reverse .feature-row-text { order: 2; }
.page-features .feature-row-text h3 { font-size: 26px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.3px; }
.page-features .feature-row-text p { color: var(--muted); margin: 0; font-size: 15px; }
.page-features .feature-row-visual img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ===== CTA BAR ===== */
.page-features .cta-bar { background: var(--navy); color: #fff; padding: 60px 0; text-align: center; }
.page-features .cta-bar h2 { font-size: 32px; font-weight: 800; margin: 0 0 12px; letter-spacing: -.5px; }
.page-features .cta-bar p { color: rgba(255,255,255,.7); margin: 0 0 24px; }

/* ===== RESPONSIVE (<=960px) ===== */
@media (max-width: 960px) {
    .page-features .section-head { margin: 0px 20px 50px 20px; }
    .page-features .hero + .section { padding-top: 70px; }
    .page-features .hero-cta { margin-bottom: 40px; }
    .page-features .hero p.lead { margin-top: 0; }
    .page-features .hero { padding: 40px 0px 10px 0px; }
    .page-features .hero-inner { grid-template-columns: 1fr; gap: 0px; }
    .page-features .hero-visual { max-width: 640px; margin: 0 auto; }
    .page-features .hero-visual img.shot { width: 100%; margin-bottom: -40px; }
    .page-features .feature-row,
    .page-features .feature-row.reverse { grid-template-columns: 1fr; gap: 28px; }
    .page-features .feature-row.reverse .feature-row-text { order: 0; }
}

/* ===== RESPONSIVE (<=720px) ===== */
@media (max-width: 720px) {
    .page-features .section { padding: 60px 0; }
}
