.STbyben-wrapper * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.STbyben-body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px 20px;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.STbyben-container {
max-width: 1200px;
width: 100%;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
}
.STbyben-h2 {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 25px;
text-align: center;
font-size: 28px;
font-weight: 600;
}
.STbyben-table-wrapper {
overflow-x: auto;
padding: 30px;
}
.STbyben-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: white;
}
.STbyben-thead-th {
background: #f8f9ff;
color: #333;
font-weight: 600;
text-align: left;
padding: 18px;
border-bottom: 3px solid #667eea;
position: sticky;
top: 0;
z-index: 10;
}
.STbyben-thead-th:first-child {
border-radius: 10px 0 0 0;
}
.STbyben-thead-th:last-child {
border-radius: 0 10px 0 0;
}
.STbyben-tbody-tr {
transition: all 0.3s ease;
}
.STbyben-tbody-tr:hover {
background: #f8f9ff;
transform: translateX(5px);
}
.STbyben-tbody-td {
padding: 16px 18px;
border-bottom: 1px solid #e5e7eb;
color: #555;
vertical-align: top;
}
.STbyben-tbody-tr:last-child .STbyben-tbody-td {
border-bottom: none;
}
.STbyben-solution-name {
font-weight: 600;
color: #667eea;
font-size: 16px;
}
.STbyben-price-badge {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 6px 12px;
border-radius: 20px;
font-weight: 600;
font-size: 14px;
}
.STbyben-durability {
color: #10b981;
font-weight: 600;
}
.STbyben-pros {
color: #10b981;
font-size: 14px;
line-height: 1.6;
}
.STbyben-cons {
color: #ef4444;
font-size: 14px;
line-height: 1.6;
}
.STbyben-rating {
display: flex;
gap: 3px;
}
.STbyben-star {
color: #fbbf24;
font-size: 18px;
}
@media (max-width: 768px) {
.STbyben-table-wrapper {
padding: 15px;
}
.STbyben-h2 {
font-size: 22px;
padding: 20px;
}
.STbyben-thead-th, .STbyben-tbody-td {
padding: 12px 10px;
font-size: 14px;
}
}.STbyben-process-wrapper * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.STbyben-process-body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px 20px;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.STbyben-process-container {
max-width: 1200px;
width: 100%;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
padding: 40px;
}
.STbyben-process-h2 {
text-align: center;
color: #333;
font-size: 32px;
margin-bottom: 20px;
font-weight: 600;
}
.STbyben-process-subtitle {
text-align: center;
color: #666;
font-size: 16px;
margin-bottom: 50px;
}
.STbyben-timeline {
position: relative;
padding: 20px 0;
}
.STbyben-timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
transform: translateX(-50%);
}
.STbyben-step {
display: flex;
align-items: center;
margin-bottom: 60px;
position: relative;
animation: STbybenSlideIn 0.6s ease-out forwards;
opacity: 0;
}
.STbyben-step:nth-child(1) { animation-delay: 0.1s; }
.STbyben-step:nth-child(2) { animation-delay: 0.2s; }
.STbyben-step:nth-child(3) { animation-delay: 0.3s; }
.STbyben-step:nth-child(4) { animation-delay: 0.4s; }
.STbyben-step:nth-child(5) { animation-delay: 0.5s; }
.STbyben-step:nth-child(6) { animation-delay: 0.6s; }
.STbyben-step:nth-child(7) { animation-delay: 0.7s; }
.STbyben-step:nth-child(8) { animation-delay: 0.8s; }
@keyframes STbybenSlideIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.STbyben-step:nth-child(even) {
flex-direction: row-reverse;
}
.STbyben-step-number {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
font-weight: bold;
box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
z-index: 2;
}
.STbyben-step-content {
width: calc(50% - 50px);
padding: 25px;
background: #f8f9ff;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.STbyben-step-content:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.STbyben-step:nth-child(odd) .STbyben-step-content {
margin-right: auto;
}
.STbyben-step:nth-child(even) .STbyben-step-content {
margin-left: auto;
}
.STbyben-step-title {
color: #667eea;
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}
.STbyben-step-icon {
font-size: 24px;
}
.STbyben-step-description {
color: #555;
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
}
.STbyben-step-duration {
display: inline-block;
background: #e5e7ff;
color: #667eea;
padding: 5px 12px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
}
.STbyben-step-warning {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 10px;
margin-top: 10px;
border-radius: 5px;
font-size: 13px;
color: #856404;
}
.STbyben-final-note {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 30px;
border-radius: 15px;
text-align: center;
margin-top: 40px;
}
.STbyben-final-note h3 {
font-size: 24px;
margin-bottom: 15px;
}
.STbyben-final-note p {
font-size: 16px;
opacity: 0.95;
}
@media (max-width: 768px) {
.STbyben-timeline::before {
left: 40px;
}
.STbyben-step {
flex-direction: column !important;
align-items: flex-start;
padding-left: 80px;
}
.STbyben-step-number {
left: 40px;
width: 50px;
height: 50px;
font-size: 20px;
}
.STbyben-step-content {
width: 100%;
margin: 20px 0 !important;
}
.STbyben-step:nth-child(even) {
flex-direction: column !important;
}
}.STbyben-faq-wrapper {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.STbyben-faq-title {
color: #2c3e50;
font-size: 32px;
font-weight: 600;
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 3px solid #667eea;
}
.STbyben-faq-container {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.STbyben-faq-item {
border-bottom: 1px solid #e5e7eb;
transition: all 0.3s ease;
}
.STbyben-faq-item:last-child {
border-bottom: none;
}
.STbyben-faq-item:hover {
background: #f8f9ff;
}
.STbyben-faq-question {
padding: 25px 30px;
cursor: pointer;
position: relative;
font-size: 18px;
font-weight: 600;
color: #333;
line-height: 1.5;
padding-right: 60px;
}
.STbyben-faq-question::after {
content: '+';
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
font-size: 28px;
color: #667eea;
transition: transform 0.3s ease;
}
.STbyben-faq-item.active .STbyben-faq-question::after {
transform: translateY(-50%) rotate(45deg);
}
.STbyben-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.STbyben-faq-item.active .STbyben-faq-answer {
max-height: 1000px;
}
.STbyben-faq-answer-content {
padding: 0 30px 25px 30px;
color: #555;
font-size: 16px;
line-height: 1.8;
}
.STbyben-faq-answer-content p {
margin-bottom: 12px;
}
.STbyben-faq-answer-content p:last-child {
margin-bottom: 0;
}
.STbyben-faq-highlight {
background: #fef3c7;
padding: 2px 6px;
border-radius: 4px;
font-weight: 600;
color: #92400e;
}
@media (max-width: 768px) {
.STbyben-faq-question {
font-size: 16px;
padding: 20px 20px;
padding-right: 50px;
}
.STbyben-faq-answer-content {
padding: 0 20px 20px 20px;
font-size: 14px;
}
.STbyben-faq-title {
font-size: 24px;
}
}@layer bricks{.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide.brx-auto-height .splide__list{align-items:flex-start}.splide__container{box-sizing:border-box;position:relative}.splide__track{height:100%;overflow:hidden;position:relative;width:100%;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide__list{display:flex;height:100%;padding:0}.splide__list,.splide__slide{backface-visibility:hidden;margin:0}.splide__slide{-webkit-tap-highlight-color:transparent;background-size:cover;box-sizing:border-box;flex-shrink:0;list-style-type:none;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide--rtl{direction:rtl}.splide__arrows.custom,.splide__track--ttb>.splide__list{display:block}.splide__arrow{align-items:center;background-color:transparent;cursor:pointer;display:flex;font-size:60px;height:50px;justify-content:center;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:50px;z-index:1}.splide__arrow:disabled{opacity:.5}.splide__arrows--ltr .splide__arrow--prev{left:0}.splide__arrows--ltr .splide__arrow--next,.splide__arrows--rtl .splide__arrow--prev{right:0}.splide__arrows--rtl .splide__arrow--next{left:0}.splide__arrows--rtl .splide__arrow--next svg,.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:0}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:0;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:0;list-style-type:none;margin:0;pointer-events:auto}.splide__pagination{bottom:15px;left:50%;list-style:none;padding:0;position:absolute;transform:translateX(-50%);z-index:1}.splide__pagination .splide__pagination__page{background-color:rgba(0,0,0,.33);border:0;border-radius:100%;display:inline-block;height:10px;margin:5px;padding:0;position:relative;transition:transform .2s linear;width:10px}.splide__pagination .splide__pagination__page.is-active{background-color:#000;z-index:1}.splide__pagination .splide__pagination__page:focus{outline:none}.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__progress__bar{background:#ccc;height:3px;width:0}.splide__toggle{cursor:pointer}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}}