/* Reset & Base Styles */
/* Container-trangweb-star */
.features-section {
    max-width: 1400px;
    margin: 0 auto;
}

.container-trangweb-star {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ========== LEFT COLUMN - ILLUSTRATION ========== */
.illustration-column {
    position: relative;
    padding: 60px 40px;
    min-height: 700px;
}

/* Background Circle */
.background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.4) 0%, rgba(220, 230, 250, 0.6) 100%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

/* Decorative Text */
.text-quality,
.text-discover,
.text-value {
    position: absolute;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: rgba(150, 150, 180, 0.3);
    z-index: 1;
}

.text-quality {
    top: 140px;
    right: 40px;
    animation: float 6s ease-in-out infinite;
    color: #f3480e;
    transform: translateY(-50%);
    font-weight: 700;
}

.text-discover {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite 2s;
    color: #80c7a5;
    font-weight: 700;
}

.text-value {
    bottom: 110px;
    right: 50px;
    animation: float 6s ease-in-out infinite 4s;
    color: #177bf7;
    font-weight: 700;
}

/* Step Cards */
.step-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.card-1 {
    width: 280px;
    margin-left: 0px;
    animation-delay: 0.2s;
}

.card-2 {
    width: 300px;
    margin-left: auto;
    margin-right: 0px;
    margin-top: 20px;
    animation-delay: 0.6s;
}

.card-3 {
    width: 300px;
    margin-left: 0px;
    margin-top: 20px;
    animation-delay: 1s;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Step Badge */
.step-badge {
    display: inline-block;
    background: #1E88E5;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.star-box {
    width: 60px;
    height: 60px;
    border: 1px solid;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.star-box.blue {
    border-color: #1E88E5;
    color: #1E88E5;
}

.star-box.pink {
    border-color: #E91E63;
    color: #E91E63;
    animation: pulse 2s ease-in-out infinite;
}

.star-box svg {
    width: 30px;
    height: 30px;
}

.star-box:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Review Card */
.review-card {
    margin-top: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.reviewer-role {
    font-size: 11px;
    color: #888;
}

.verified-badge {
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 11px;
    line-height: 1.6;
    color: #555;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.comparison-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.bar {
    width: 100%;
    height: 24px;
    border-radius: 4px;
}

.bar.red {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

.bar.blue {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Decorative Lines */
.deco-line {
    position: absolute;
    width: 80px;
    height: 2px;
    background: #4A90E2;
    opacity: 0.3;
}

.line-1 {
    top: 150px;
    left: 30px;
    transform: rotate(-30deg);
}

/* Arrow-trangweb-stars */
.arrow-trangweb-star {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    animation: arrow-trangweb-starFloat 3s ease-in-out infinite;
}

.arrow-trangweb-star-1 {
    top: 160px;
    right: 110px;
}

.arrow-trangweb-star-2 {
    top: 395px;
    left: 90px;
}

/* ========== RIGHT COLUMN - CONTENT ========== */
.content-column {
    padding: 40px 0;
}

/* Tailored Badge */
.tailored-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    color: #1E88E5;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.tailored-badge svg {
    width: 18px;
    height: 18px;
}

/* Main Heading */
.main-heading {
    font-size: 48px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-title-trangweb-star {
    font-size: 23px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.3;
    color: #7f8c8d;
    max-width: 400px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes arrow-trangweb-starFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .container-trangweb-star {
        gap: 60px;
    }

    .main-heading {
        font-size: 40px;
    }

    .feature-title-trangweb-star {
        font-size: 24px;
    }

    .feature-description {
        font-size: 16px;
    }

    .background-circle {
        width: 400px;
        height: 400px;
    }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
    .container-trangweb-star {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .illustration-column {
        order: 2;
        min-height: 600px;
        padding: 40px 20px;
    }

    .content-column {
        order: 1;
        padding: 20px 0;
    }

    .main-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .feature-title-trangweb-star {
        font-size: 22px;
    }

    .feature-description {
        font-size: 15px;
    }

    .features-list {
        gap: 30px;
    }

    .background-circle {
        width: 350px;
        height: 350px;
    }

    .card-1, .card-2, .card-3 {
        width: 260px;
    }

    .text-quality,
    .text-discover,
    .text-value {
        font-size: 24px;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    /*body {
        padding: 20px 15px;
    }*/

    .main-heading {
        font-size: 26px;
    }

    .feature-title-trangweb-star {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .tailored-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .illustration-column {
        min-height: 500px;
        padding: 30px 10px;
    }

    .background-circle {
        width: 280px;
        height: 280px;
    }

    .card-1, .card-2, .card-3 {
        width: 220px;
        padding: 18px;
    }

    .step-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .star-box {
        width: 50px;
        height: 50px;
    }

    .star-box svg {
        width: 24px;
        height: 24px;
    }

    .text-quality,
    .text-discover,
    .text-value {
        font-size: 20px;
        opacity: 0.2;
    }

    .arrow-trangweb-star {
        width: 60px;
        height: 60px;
    }
}

/* Extra Small */
@media screen and (max-width: 360px) {
    .main-heading {
        font-size: 22px;
    }

    .feature-title-trangweb-star {
        font-size: 18px;
    }

    .card-1, .card-2, .card-3 {
        width: 200px;
    }
}
.bar {
  padding: 0 5px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}






