/* ==========================================================
   HOME.CSS — Benigens Group
   Homepage-only sections: hero, trust bar, services,
   results, process, testimonials, final CTA
   ========================================================== */

/* ── HERO ── */
.ben-hero {
    display:        grid;
    grid-template-columns: 56% 44%;
    min-height:     88vh;
}

/* Left pane */
.ben-hero-left {
    padding:        0 80px;
    display:        flex;
    flex-direction: column;
    justify-content:center;
    gap:            28px;
    background:     var(--bone);
    position:       relative;
}
.ben-hero-left::before {
    content:   '';
    position:  absolute;
    top:       80px;
    right:     0;
    width:     1px;
    height:    60%;
    background:linear-gradient(to bottom, transparent, rgba(30,144,255,0.25), transparent);
}

.ben-hero-headline {
    font-family:    var(--font-display);
    font-size:      64px;
    font-weight:    400;
    line-height:    1.05;
    letter-spacing: -0.01em;
    color:          var(--ink);
}
.ben-hero-headline em {
    font-style: italic;
    color:      var(--gold);
}

.ben-hero-ctas {
    display:     flex;
    align-items: center;
    gap:         16px;
    flex-wrap:   wrap;
}

/* Social proof */
.ben-hero-proof {
    display:     flex;
    align-items: center;
    gap:         16px;
    margin-top:  4px;
}
.ben-avatar-stack {
    display:     flex;
    align-items: center;
}
.ben-avatar {
    width:       32px;
    height:      32px;
    border-radius:50%;
    border:      2px solid var(--bone);
    margin-right:-10px;
}
.ben-avatar:nth-child(1) { background: linear-gradient(135deg, #1e90ff, #1570d8); }
.ben-avatar:nth-child(2) { background: linear-gradient(135deg, #0c1a3a, #1a3560); }
.ben-avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe, #1e90ff); }
.ben-avatar:nth-child(4) { background: linear-gradient(135deg, #0c1a3a, #2a4a7a); }

.ben-proof-text { display: flex; flex-direction: column; gap: 4px; }
.ben-proof-sub {
    font-family: var(--font-body);
    font-size:   12px;
    font-weight: 300;
    color:       var(--muted);
    margin:      0;
}
.ben-proof-sub strong {
    font-weight: 500;
    color:       var(--ink);
}

/* Right pane */
.ben-hero-right {
    position:   relative;
    background: var(--charcoal);
    overflow:   hidden;
}
.ben-hero-right::before {
    content:   '';
    position:  absolute;
    inset:     0;
    background:radial-gradient(circle at 30% 20%, rgba(30,144,255,0.18), transparent 55%);
    z-index:   1;
    pointer-events: none;
}
.ben-hero-img {
    position:    absolute;
    inset:       0;
    width:       100%;
    height:      100%;
    object-fit:  cover;
    filter:      brightness(0.65) contrast(1.05) saturate(0.85);
}

/* Floating badges */
.ben-badge-float {
    position:       absolute;
    backdrop-filter:blur(12px);
    background:     rgba(255,255,255,0.95);
    border:         0.5px solid rgba(255,255,255,0.6);
    z-index:        10;
}
.ben-badge-top-right {
    top:         28px;
    right:       28px;
    border-radius:999px;
    padding:     10px 18px;
    display:     flex;
    align-items: center;
    gap:         8px;
    font-family: var(--font-body);
    font-size:   10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color:       var(--charcoal);
}
.ben-badge-dot {
    width:     6px;
    height:    6px;
    border-radius: 50%;
    background:    #10b981;
    flex-shrink:   0;
}
.ben-badge-bottom-left {
    bottom:    36px;
    left:      28px;
    border-radius: 8px;
    padding:   20px 22px;
    min-width: 220px;
    box-shadow:var(--shadow-lg);
}
.ben-badge-label {
    font-family:    var(--font-body);
    font-size:      9px;
    font-weight:    300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color:          var(--muted);
    margin-bottom:  6px;
}
.ben-badge-big {
    font-family: var(--font-display);
    font-size:   28px;
    font-weight: 400;
    color:       var(--ink);
    line-height: 1;
    margin-bottom:6px;
}
.ben-badge-sub {
    font-family: var(--font-body);
    font-size:   11px;
    font-weight: 300;
    color:       var(--muted);
    margin-bottom:10px;
}
.ben-badge-foot {
    display:     flex;
    align-items: center;
    gap:         6px;
    padding-top: 10px;
    border-top:  0.5px solid rgba(13,27,46,0.1);
    font-family: var(--font-body);
    font-size:   10px;
    font-weight: 300;
    letter-spacing:0.08em;
    color:       var(--ink);
}
.ben-badge-mid-right {
    top:       50%;
    right:     28px;
    transform: translateY(-50%);
    border-radius:8px;
    padding:   14px 16px;
    display:   flex;
    align-items:center;
    gap:       12px;
}
.ben-badge-icon {
    width:           36px;
    height:          36px;
    border-radius:   50%;
    display:         flex;
    align-items:     center;
    justify-content: center;
    background:      rgba(30,144,255,0.15);
    flex-shrink:     0;
}
.ben-badge-mid-title {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    500;
    color:          var(--charcoal);
    letter-spacing: 0.06em;
    margin-bottom:  2px;
}
.ben-badge-mid-sub {
    font-family: var(--font-body);
    font-size:   10px;
    font-weight: 300;
    color:       var(--muted);
    margin:      0;
}

/* ── TRUST BAR ── */
.ben-trust-bar {
    background:      var(--charcoal);
    padding:         28px 60px;
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             40px;
    border-top:      0.5px solid rgba(30,144,255,0.15);
    border-bottom:   0.5px solid rgba(30,144,255,0.15);
}
.ben-trust-label {
    font-family:    var(--font-body);
    font-size:      10px;
    font-weight:    300;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color:          rgba(255,255,255,0.4);
    white-space:    nowrap;
}
.ben-trust-logos {
    display:         flex;
    gap:             56px;
    align-items:     center;
    flex-wrap:       wrap;
    justify-content: center;
    flex:            1;
}
.ben-trust-logo {
    color:       rgba(255,255,255,0.55);
    transition:  color var(--transition-fast);
    white-space: nowrap;
    cursor:      default;
}
.ben-trust-logo:hover      { color: var(--gold); }
.ben-trust-serif {
    font-family:    var(--font-display);
    font-style:     italic;
    font-size:      22px;
    letter-spacing: 0.05em;
}
.ben-trust-sans {
    font-family:    var(--font-body);
    font-style:     normal;
    font-weight:    500;
    font-size:      13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ── SERVICES ── */
.ben-services-section {
    padding:    110px 80px;
    background: var(--bone);
}
.ben-services-header {
    text-align:      center;
    margin-bottom:   72px;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    gap:             16px;
}
.ben-services-grid {
    display:        grid;
    grid-template-columns: repeat(3, 1fr);
    gap:            0;
    max-width:      1300px;
    margin:         0 auto;
    border-top:     0.5px solid rgba(13,27,46,0.12);
    border-bottom:  0.5px solid rgba(13,27,46,0.12);
}
.ben-service-card {
    padding:        56px 44px;
    border-right:   0.5px solid rgba(13,27,46,0.12);
    display:        flex;
    flex-direction: column;
    gap:            22px;
    position:       relative;
    transition:     background 0.4s ease;
    text-decoration:none;
    color:          inherit;
}
.ben-service-card:last-child { border-right: none; }
.ben-service-card:hover      { background: rgba(255,255,255,0.5); }
.ben-service-card:hover .ben-service-arrow {
    transform: translate(4px, -4px);
    color:     var(--gold);
}

.ben-service-num {
    font-family:    var(--font-display);
    font-style:     italic;
    font-size:      14px;
    color:          var(--gold);
    letter-spacing: 0.04em;
}
.ben-service-icon {
    width:           46px;
    height:          46px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    border:          0.5px solid var(--gold);
    border-radius:   50%;
    color:           var(--gold);
}
.ben-service-title {
    font-family: var(--font-display);
    font-size:   30px;
    font-weight: 400;
    line-height: 1.1;
    color:       var(--ink);
}
.ben-service-title em { font-style: italic; }
.ben-service-body {
    font-family: var(--font-body);
    font-size:   14px;
    font-weight: 300;
    color:       var(--muted);
    line-height: 1.85;
    margin:      0;
}
.ben-service-list {
    list-style:     none;
    padding:        0;
    margin:         0;
    display:        flex;
    flex-direction: column;
    gap:            10px;
}
.ben-service-list li {
    font-family:  var(--font-body);
    font-size:    12px;
    font-weight:  300;
    color:        var(--ink);
    letter-spacing:0.04em;
    display:      flex;
    align-items:  center;
    gap:          10px;
}
.ben-service-list li::before {
    content:      '';
    width:        4px;
    height:       4px;
    background:   var(--gold);
    border-radius:50%;
    flex-shrink:  0;
}
.ben-service-arrow {
    align-self: flex-start;
    margin-top: 10px;
    color:      var(--ink);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ── RESULTS SECTION ── */
.ben-results-section {
    background: var(--charcoal);
    padding:    110px 80px;
    position:   relative;
    overflow:   hidden;
}
.ben-results-section::before {
    content:      '';
    position:     absolute;
    top:          -120px;
    right:        -120px;
    width:        480px;
    height:       480px;
    border-radius:50%;
    background:   radial-gradient(circle, rgba(30,144,255,0.08), transparent 70%);
    pointer-events:none;
}
.ben-results-inner {
    max-width: 1300px;
    margin:    0 auto;
    position:  relative;
    z-index:   1;
}
.ben-results-top {
    display:       grid;
    grid-template-columns: 1fr 1fr;
    gap:           80px;
    margin-bottom: 80px;
    align-items:   end;
}
.ben-results-heading {
    font-family: var(--font-display);
    font-size:   52px;
    font-weight: 400;
    line-height: 1.1;
    color:       #fff;
}
.ben-results-heading em {
    font-style: italic;
    color:      var(--gold);
}
.ben-results-sub {
    font-family: var(--font-body);
    font-size:   14px;
    font-weight: 300;
    color:       rgba(255,255,255,0.5);
    line-height: 1.85;
    max-width:   380px;
    margin-left: auto;
    margin:      0 0 0 auto;
}
.ben-stats-grid {
    display:     grid;
    grid-template-columns: repeat(4, 1fr);
    gap:         0;
    border-top:  0.5px solid rgba(255,255,255,0.1);
}
.ben-stat-cell {
    padding:      44px 32px 0;
    border-right: 0.5px solid rgba(255,255,255,0.1);
}
.ben-stat-cell:last-child { border-right: none; }
.ben-stat-num {
    font-family:   var(--font-display);
    font-size:     64px;
    font-weight:   400;
    color:         #fff;
    line-height:   1;
    margin-bottom: 14px;
    display:       flex;
    align-items:   baseline;
    gap:           4px;
}
.ben-stat-num em {
    font-style:  italic;
    font-size:   32px;
    color:       var(--gold);
}
.ben-stat-label {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color:          rgba(255,255,255,0.45);
    line-height:    1.5;
    margin:         0;
}

/* ── PROCESS ── */
.ben-process-section {
    padding:    110px 80px;
    background: var(--bone);
}
.ben-process-inner {
    max-width: 1300px;
    margin:    0 auto;
}
.ben-process-header {
    display:       grid;
    grid-template-columns: 1fr 1fr;
    gap:           80px;
    margin-bottom: 80px;
    align-items:   end;
}
.ben-process-heading {
    font-family: var(--font-display);
    font-size:   52px;
    font-weight: 400;
    line-height: 1.1;
    color:       var(--ink);
}
.ben-process-heading em { font-style: italic; }

.ben-process-grid {
    display:              grid;
    grid-template-columns:repeat(4, 1fr);
    gap:                  1px;
    background:           rgba(13,27,46,0.12);
    border-top:           0.5px solid rgba(13,27,46,0.12);
    border-bottom:        0.5px solid rgba(13,27,46,0.12);
}
.ben-process-step {
    background:     var(--bone);
    padding:        44px 32px;
    display:        flex;
    flex-direction: column;
    gap:            14px;
    transition:     background 0.4s;
}
.ben-process-step:hover { background: var(--cream); }
.ben-process-num {
    font-family:  var(--font-display);
    font-style:   italic;
    font-size:    48px;
    font-weight:  400;
    color:        var(--gold);
    line-height:  1;
    margin-bottom:4px;
}
.ben-process-step-title {
    font-family: var(--font-display);
    font-size:   24px;
    font-weight: 400;
    color:       var(--ink);
    line-height: 1.2;
}
.ben-process-step-body {
    font-family: var(--font-body);
    font-size:   13px;
    font-weight: 300;
    color:       var(--muted);
    line-height: 1.8;
    margin:      0;
}

/* ── TESTIMONIALS ── */
.ben-testimonials-section {
    background: #fff;
    padding:    110px 80px;
}
.ben-testimonials-header {
    text-align:     center;
    margin-bottom:  64px;
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            14px;
}
.ben-testimonial-grid {
    display:              grid;
    grid-template-columns:repeat(3, 1fr);
    gap:                  32px;
    max-width:            1300px;
    margin:               0 auto 80px;
}
.ben-testimonial-card {
    background:     var(--bone);
    padding:        44px 36px;
    display:        flex;
    flex-direction: column;
    gap:            20px;
    transition:     transform 0.4s ease, box-shadow 0.4s ease;
}
.ben-testimonial-card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(26,26,26,0.15);
}
.ben-testimonial-quote {
    font-family: var(--font-display);
    font-style:  italic;
    font-size:   18px;
    font-weight: 400;
    color:       var(--ink);
    line-height: 1.55;
    flex:        1;
}
.ben-testimonial-author {
    display:      flex;
    align-items:  center;
    gap:          14px;
    margin-top:   auto;
    padding-top:  16px;
    border-top:   0.5px solid rgba(13,27,46,0.12);
}
.ben-testimonial-avatar {
    width:        44px;
    height:       44px;
    border-radius:50%;
    flex-shrink:  0;
}
.ben-av-1 { background: linear-gradient(135deg, #1e90ff, #1570d8); }
.ben-av-2 { background: linear-gradient(135deg, #0c1a3a, #1a3560); }
.ben-av-3 { background: linear-gradient(135deg, #4facfe, #1e90ff); }

.ben-testimonial-name {
    font-family:    var(--font-body);
    font-size:      13px;
    font-weight:    500;
    color:          var(--ink);
    letter-spacing: 0.04em;
    margin:         0 0 3px;
}
.ben-testimonial-role {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    300;
    color:          var(--muted);
    letter-spacing: 0.06em;
    margin:         0;
}

/* Featured quote */
.ben-featured-review {
    max-width:  820px;
    margin:     0 auto;
    text-align: center;
    padding:    56px 0 0;
    border-top: 0.5px solid rgba(13,27,46,0.1);
    display:    flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.ben-quote-mark {
    font-family:  var(--font-display);
    font-size:    90px;
    font-weight:  300;
    color:        var(--gold);
    line-height:  0.5;
    display:      block;
}
.ben-review-quote-text {
    font-family:  var(--font-display);
    font-size:    26px;
    font-weight:  400;
    font-style:   italic;
    color:        var(--ink);
    line-height:  1.5;
    margin:       0;
}
.ben-review-author {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color:          var(--muted);
}
.ben-overall-rating {
    display:     flex;
    align-items: center;
    gap:         18px;
    padding-top: 36px;
    border-top:  0.5px solid rgba(13,27,46,0.1);
    width:       100%;
    justify-content: center;
}
.ben-rating-big-num {
    font-family: var(--font-display);
    font-size:   56px;
    font-weight: 400;
    color:       var(--ink);
    line-height: 1;
}
.ben-rating-detail {
    display:     flex;
    flex-direction:column;
    gap:         5px;
    align-items: flex-start;
}
.ben-rating-label {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    300;
    letter-spacing: 0.1em;
    color:          var(--muted);
    margin:         0;
}

/* ── FINAL CTA ── */
.ben-final-cta-section {
    position:        relative;
    overflow:        hidden;
    background:      var(--charcoal);
    padding:         130px 80px;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    text-align:      center;
}
.ben-final-cta-section::before {
    content:      '';
    position:     absolute;
    top:          -80px;
    left:         50%;
    transform:    translateX(-50%);
    width:        700px;
    height:       700px;
    border-radius:50%;
    border:       0.5px solid rgba(30,144,255,0.12);
    pointer-events:none;
}
.ben-final-cta-section::after {
    content:      '';
    position:     absolute;
    top:          -40px;
    left:         50%;
    transform:    translateX(-50%);
    width:        1050px;
    height:       1050px;
    border-radius:50%;
    border:       0.5px solid rgba(30,144,255,0.06);
    pointer-events:none;
}
.ben-final-cta-inner {
    position:       relative;
    z-index:        1;
    max-width:      700px;
    width:          100%;
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            0;
}
.ben-final-eyebrow {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color:          var(--gold);
    margin-bottom:  24px;
}
.ben-final-heading {
    font-family:   var(--font-display);
    font-size:     64px;
    font-weight:   400;
    color:         #fff;
    line-height:   1.05;
    margin-bottom: 24px;
}
.ben-final-heading em {
    font-style: italic;
    color:      var(--gold);
}
.ben-final-sub {
    font-family:   var(--font-body);
    font-size:     15px;
    font-weight:   300;
    color:         rgba(255,255,255,0.55);
    line-height:   1.85;
    letter-spacing:0.02em;
    margin-bottom: 48px;
    max-width:     520px;
}
.ben-final-ctas {
    display:     flex;
    align-items: center;
    gap:         16px;
    flex-wrap:   wrap;
    justify-content:center;
}
.ben-scarcity-line {
    display:        inline-flex;
    align-items:    center;
    gap:            10px;
    margin-top:     28px;
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    400;
    letter-spacing: 0.16em;
    color:          rgba(255,255,255,0.7);
    padding:        10px 18px;
    border:         0.5px solid rgba(30,144,255,0.4);
    border-radius:  999px;
    background:     rgba(30,144,255,0.06);
}
.ben-final-perks {
    display:         flex;
    gap:             40px;
    justify-content: center;
    flex-wrap:       wrap;
    margin-top:      48px;
}
.ben-final-perk {
    display:        flex;
    align-items:    center;
    gap:            10px;
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    300;
    letter-spacing: 0.1em;
    color:          rgba(255,255,255,0.5);
}
.ben-perk-dot {
    width:        5px;
    height:       5px;
    border-radius:50%;
    background:   var(--gold);
    flex-shrink:  0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    /* Hero */
    .ben-hero { grid-template-columns: 1fr; min-height: auto; }
    .ben-hero-left  { padding: 60px 32px; }
    .ben-hero-left::before { display: none; }
    .ben-hero-right { min-height: 420px; }
    .ben-hero-headline { font-size: 44px; }
    .ben-badge-mid-right { display: none; }

    /* Trust */
    .ben-trust-bar { padding: 24px 32px; flex-direction: column; gap: 24px; }
    .ben-trust-logos { gap: 32px; }

    /* Sections */
    .ben-services-section,
    .ben-results-section,
    .ben-process-section,
    .ben-testimonials-section,
    .ben-final-cta-section { padding: 72px 24px; }

    /* Services */
    .ben-services-grid { grid-template-columns: 1fr; }
    .ben-service-card  { border-right: none; border-bottom: 0.5px solid rgba(13,27,46,0.12); }
    .ben-service-card:last-child { border-bottom: none; }

    /* Results */
    .ben-results-top  { grid-template-columns: 1fr; gap: 32px; }
    .ben-results-heading { font-size: 38px; }
    .ben-results-sub  { margin-left: 0; }
    .ben-stats-grid   { grid-template-columns: repeat(2,1fr); }
    .ben-stat-cell:nth-child(2) { border-right: none; }
    .ben-stat-cell:nth-child(1),
    .ben-stat-cell:nth-child(2) { border-bottom: 0.5px solid rgba(255,255,255,0.1); }

    /* Process */
    .ben-process-header { grid-template-columns: 1fr; gap: 32px; }
    .ben-process-heading { font-size: 38px; }
    .ben-process-grid  { grid-template-columns: repeat(2,1fr); }

    /* Testimonials */
    .ben-testimonial-grid { grid-template-columns: 1fr; }

    /* Final CTA */
    .ben-final-heading { font-size: 42px; }
    .ben-final-perks   { gap: 18px; }
}
@media (max-width: 600px) {
    .ben-hero-headline   { font-size: 36px; }
    .ben-stats-grid      { grid-template-columns: 1fr; }
    .ben-stat-cell       { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.1); }
    .ben-process-grid    { grid-template-columns: 1fr; }
    .ben-results-heading,
    .ben-process-heading,
    .ben-final-heading   { font-size: 32px; }
    .ben-review-quote-text { font-size: 20px; }
    .ben-trust-label     { display: none; }
}
