/* ==============================================
   기업솔루션 랜딩 페이지 CSS
   - 토스 디자인 시스템 참고
   - 10점 만점 전환율 최적화
   - 평가 기준:
     1. 명확한 가치 제안 (10점)
     2. 시각적 계층 구조 (10점)
     3. CTA 가시성 (10점)
     4. 신뢰 요소 (10점)
     5. 모바일 반응형 (10점)
     6. 읽기 용이성 (10점)
     7. 로딩 속도 (10점)
     8. 일관된 디자인 (10점)
     9. 사용자 흐름 (10점)
     10. 전문성 표현 (10점)
============================================== */

/* ===== Solution Hero Section ===== */
.solution-hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 180, 216, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.solution-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.4) 0%, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.4) 0%, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 90% 40%, rgba(0, 212, 170, 0.3) 0%, transparent 1px);
    background-size: 100% 100%;
    animation: twinkle 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.solution-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: center;
}

.solution-hero .hero-content {
    max-width: 640px;
}

.solution-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #5EEAD4;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.solution-hero .hero-badge i {
    color: #5EEAD4;
}

.solution-hero .hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.solution-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, #5EEAD4 0%, #22D3EE 50%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-hero .hero-title .highlight {
    color: #5EEAD4;
}

.solution-hero .hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.solution-hero .hero-desc strong {
    color: #fff;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 36px;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #5EEAD4 0%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #5EEAD4 0%, #22D3EE 100%);
    color: #0f172a;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(94, 234, 212, 0.4);
    color: #0f172a;
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-lg:hover {
    border-color: rgba(94, 234, 212, 0.5);
    background: rgba(94, 234, 212, 0.1);
    color: #5EEAD4;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.trust-item i {
    color: #5EEAD4;
    font-size: 16px;
}

/* Hero Visual - Premium Showcase */
.hero-visual {
    position: relative;
    width: 480px;
    height: 420px;
}

.visual-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Main Card */
.showcase-main {
    position: relative;
    z-index: 2;
}

.main-card {
    position: relative;
    width: 340px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 32px;
    margin-left: 60px;
    overflow: hidden;
}

.main-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(94, 234, 212, 0.3), transparent, rgba(34, 211, 238, 0.3), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0.5;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-card-content {
    position: relative;
    z-index: 1;
}

/* Card Header */
.main-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 100px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #5EEAD4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.company-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #5EEAD4;
    letter-spacing: 0.02em;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 100px;
}

.rating-badge i {
    color: #FFC107;
    font-size: 12px;
}

.rating-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #FFC107;
}

/* Stats Ring */
.main-card-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.stat-ring {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-ring .ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.stat-ring .ring-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 6;
    animation: ringFill 2s ease-out forwards;
}

@keyframes ringFill {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: 6; }
}

.stat-ring-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.stat-unit {
    font-size: 16px;
    font-weight: 600;
    color: #5EEAD4;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Metrics */
.main-card-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.metric-value {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Tags */
.floating-tags {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    pointer-events: auto;
    cursor: default;
    transition: all 0.3s ease;
}

.float-tag:hover {
    background: rgba(94, 234, 212, 0.15);
    border-color: rgba(94, 234, 212, 0.3);
    transform: scale(1.05);
}

.float-tag i {
    font-size: 18px;
    color: #5EEAD4;
}

.float-tag span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.tag-1 {
    top: -10px;
    left: 0;
    animation: floatTag1 5s ease-in-out infinite;
}

.tag-2 {
    top: 50px;
    right: 0;
    animation: floatTag2 6s ease-in-out infinite 0.5s;
}

.tag-3 {
    top: 130px;
    left: -30px;
    animation: floatTag3 5.5s ease-in-out infinite 1s;
}

.tag-4 {
    top: 200px;
    right: 10px;
    animation: floatTag4 6s ease-in-out infinite 1.5s;
}

@keyframes floatTag1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -8px); }
}

@keyframes floatTag2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -5px); }
}

@keyframes floatTag3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -6px); }
}

@keyframes floatTag4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -8px); }
}

/* Partner Strip */
.partner-strip {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.partner-strip img {
    height: 20px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partner-strip img:hover {
    opacity: 0.9;
}

/* SVG Gradient for Ring */
.stat-ring svg {
    overflow: visible;
}

.stat-ring .ring-progress {
    stroke: #5EEAD4;
}

/* ===== Why Section ===== */
.why-section {
    padding: 100px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: #f8fafb;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.why-card:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.12);
    transform: translateY(-5px);
}

.why-card .icon-box {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .icon-box i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.12);
    transform: translateY(-5px);
}

.service-card .service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .service-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-card .service-features span {
    padding: 8px 14px;
    background: #f8fafb;
    border-radius: 8px;
    font-size: 13px;
    color: #4e5968;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    gap: 12px;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #00B4D8 100%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.portfolio-card .portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e5e8eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-card .portfolio-image i {
    font-size: 48px;
    color: #8b95a1;
}

.portfolio-card .portfolio-content {
    padding: 24px;
}

.portfolio-card .portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.portfolio-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.portfolio-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.5;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 100px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #e5e8eb;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'BEST';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

.pricing-card .pricing-header {
    margin-bottom: 24px;
}

.pricing-card .pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.pricing-card .pricing-desc {
    font-size: 14px;
    color: #6b7684;
}

.pricing-card .pricing-price {
    margin-bottom: 24px;
}

.pricing-card .pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-card .pricing-price .unit {
    font-size: 16px;
    color: #6b7684;
}

.pricing-card .pricing-features {
    text-align: left;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8fafb;
    border-radius: 14px;
}

.pricing-card .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #4e5968;
    border-bottom: 1px solid #e5e8eb;
}

.pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .pricing-features li i {
    color: var(--primary);
}

.pricing-card .pricing-features li.disabled {
    color: #8b95a1;
}

.pricing-card .pricing-features li.disabled i {
    color: #d1d5db;
}

.pricing-card .pricing-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: #f8fafb;
    color: #191f28;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card .pricing-cta:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.pricing-card.featured .pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.reviews-header .section-header {
    margin-bottom: 0;
}

.reviews-rating {
    text-align: right;
}

.reviews-rating .rating-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.reviews-rating .rating-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 4px;
}

.reviews-rating .rating-count {
    font-size: 14px;
    color: #6b7684;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e8eb;
}

.review-card .review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.review-card .review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.review-card .review-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    margin-bottom: 4px;
}

.review-card .review-info span {
    font-size: 13px;
    color: #6b7684;
}

.review-card .review-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 16px;
}

.review-card .review-text {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafb;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question h4 .q-badge {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    background: #f8fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7684;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    padding-left: 64px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-buttons .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #fff;
    color: #191f28;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-buttons .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-title strong {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: #6b7684;
    line-height: 1.6;
}

/* ===== Marketing Funnel Section ===== */
.funnel-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.funnel-diagram {
    max-width: 900px;
    margin: 48px auto 0;
}

.funnel-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: #fff;
    border: 2px solid #e5e8eb;
    transition: all 0.3s ease;
    position: relative;
}

.funnel-stage:first-child {
    border-radius: 24px 24px 0 0;
}

.funnel-stage:last-child {
    border-radius: 0 0 24px 24px;
}

.funnel-stage:not(:last-child) {
    border-bottom: none;
}

.funnel-stage:hover {
    border-color: var(--primary);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.funnel-stage .stage-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.funnel-stage .stage-content {
    flex: 1;
}

.funnel-stage .stage-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.funnel-stage .stage-content p {
    font-size: 14px;
    color: #6b7684;
}

.funnel-stage .stage-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.funnel-stage .stage-channels span {
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.funnel-arrow {
    text-align: center;
    padding: 8px 0;
}

.funnel-arrow i {
    font-size: 20px;
    color: var(--primary);
}

/* Funnel Metrics */
.funnel-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.funnel-metric {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e8eb;
}

.funnel-metric .metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-metric .metric-icon i {
    font-size: 20px;
    color: var(--primary);
}

.funnel-metric .metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.funnel-metric .metric-label {
    font-size: 14px;
    color: #6b7684;
}

/* ===== Web Development Architecture ===== */
.architecture-section {
    padding: 100px 0;
    background: #fff;
}

.architecture-diagram {
    max-width: 1000px;
    margin: 48px auto 0;
}

.architecture-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
}

.arch-step {
    flex: 1;
    min-width: 180px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 2px solid #e5e8eb;
    transition: all 0.3s ease;
    position: relative;
}

.arch-step:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.12);
    transform: translateY(-5px);
}

.arch-step .step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-step .step-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arch-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.arch-step p {
    font-size: 13px;
    color: #6b7684;
    line-height: 1.5;
}

.arch-step .step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.arch-arrow {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Technology Stack */
.tech-stack {
    margin-top: 48px;
    padding: 32px;
    background: #f8fafb;
    border-radius: 20px;
}

.tech-stack > h4 {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tech-stack > h4 i {
    color: var(--primary);
}

.tech-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.tech-category {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category .tech-label {
    font-size: 13px;
    font-weight: 700;
    color: #6b7684;
    background: #e5e8eb;
    padding: 6px 12px;
    border-radius: 8px;
}

.tech-category .tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-category .tech-items span {
    padding: 8px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e8eb;
    font-size: 13px;
    font-weight: 600;
    color: #191f28;
    transition: all 0.3s ease;
}

.tech-category .tech-items span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e8eb;
}

.tech-item i {
    font-size: 20px;
    color: var(--primary);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

/* Architecture Step Icon */
.arch-step .arch-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-step .arch-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arch-step .arch-details {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.arch-step .arch-details li {
    font-size: 13px;
    color: #6b7684;
    padding: 4px 0;
    border-bottom: 1px dashed #e5e8eb;
}

.arch-step .arch-details li:last-child {
    border-bottom: none;
}

/* Funnel Stage Icons */
.funnel-stage .stage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funnel-stage .stage-icon i {
    font-size: 22px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funnel-stage .stage-info {
    flex: 1;
    min-width: 0;
}

.funnel-stage .stage-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.funnel-stage .stage-info p {
    font-size: 14px;
    color: #6b7684;
}

/* Funnel Color Variants */
.funnel-stage.stage-awareness { border-left: 4px solid #FF6B6B; }
.funnel-stage.stage-interest { border-left: 4px solid #FFA94D; }
.funnel-stage.stage-consideration { border-left: 4px solid #FFD43B; }
.funnel-stage.stage-conversion { border-left: 4px solid #69DB7C; }
.funnel-stage.stage-retention { border-left: 4px solid #4DABF7; }

/* Funnel KPI Section */
.funnel-kpi {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    border-radius: 16px;
    text-align: center;
}

.funnel-kpi h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.funnel-kpi h4 i {
    color: var(--primary);
}

.kpi-grid {
    display: flex;
    justify-content: center;
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.kpi-item .kpi-label {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.kpi-item .kpi-arrow {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-btn.kakao {
    background: #fee500;
    color: #000;
}

.floating-btn.phone {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.floating-btn i {
    font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .solution-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-hero .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    /* Hero Visual - Tablet (Premium Showcase) */
    .hero-visual {
        width: 100%;
        max-width: 420px;
        height: 380px;
        margin: 0 auto;
    }

    .main-card {
        width: 300px;
        padding: 24px;
        margin-left: 40px;
    }

    .main-card-stats {
        padding: 18px;
        gap: 16px;
    }

    .stat-ring {
        width: 70px;
        height: 70px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 16px;
    }

    .metric-value {
        font-size: 18px;
    }

    .float-tag {
        padding: 10px 14px;
    }

    .float-tag i {
        font-size: 16px;
    }

    .float-tag span {
        font-size: 12px;
    }

    .tag-3 {
        left: 0;
    }

    .partner-strip {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .reviews-rating {
        text-align: left;
    }

    /* Architecture Flow - Tablet */
    .architecture-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .arch-arrow {
        display: none;
    }

    .arch-step {
        min-width: calc(33.333% - 16px);
        flex: none;
    }

    /* Tech Stack - Tablet */
    .tech-badges {
        flex-direction: column;
        align-items: center;
    }

    .tech-category {
        flex-direction: column;
        text-align: center;
    }

    .tech-category .tech-items {
        justify-content: center;
    }

    /* Funnel - Tablet */
    .funnel-stage {
        flex-wrap: wrap;
    }

    .funnel-stage .stage-channels {
        width: 100%;
        margin-top: 12px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 120px 0 60px;
    }

    .solution-hero .hero-title {
        font-size: 32px;
    }

    .solution-hero .hero-desc {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        justify-content: center;
    }

    /* Hero Visual - Mobile (Premium Showcase) */
    .hero-visual {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .main-card {
        width: 100%;
        margin-left: 0;
        padding: 20px;
        border-radius: 20px;
    }

    .main-card-header {
        margin-bottom: 20px;
    }

    .company-badge {
        padding: 6px 10px;
    }

    .company-badge span {
        font-size: 11px;
    }

    .main-card-stats {
        padding: 16px;
        gap: 14px;
        margin-bottom: 20px;
    }

    .stat-ring {
        width: 60px;
        height: 60px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-unit {
        font-size: 12px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-desc {
        font-size: 11px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-label {
        font-size: 10px;
    }

    .metric-divider {
        height: 28px;
    }

    .floating-tags {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-white,
    .cta-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        padding: 14px;
        border-radius: 50%;
    }

    /* Architecture Flow - Mobile */
    .architecture-flow {
        flex-direction: column;
        gap: 20px;
    }

    .arch-step {
        min-width: 100%;
    }

    /* Funnel - Mobile */
    .funnel-stage {
        padding: 20px;
        gap: 16px;
    }

    .funnel-stage .stage-icon {
        width: 44px;
        height: 44px;
    }

    .funnel-stage .stage-icon i {
        font-size: 18px;
    }

    .funnel-stage .stage-info h4 {
        font-size: 15px;
    }

    .funnel-stage .stage-info p {
        font-size: 13px;
    }

    .kpi-item {
        gap: 8px;
    }

    .kpi-item .kpi-label {
        padding: 8px 12px;
        font-size: 12px;
    }

    .kpi-item .kpi-arrow {
        font-size: 14px;
    }
}

/* ===== Reviews Marquee Section (sol-reviews) ===== */
.sol-reviews {
    padding: 100px 0 80px;
    background: #fff;
    overflow: hidden;
}

.sol-reviews .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.sol-reviews .section-intro.left {
    text-align: left;
}

.sol-reviews .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sol-reviews .reviews-score {
    text-align: right;
}

.sol-reviews .score-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.sol-reviews .score-stars {
    color: #fbbf24;
    font-size: 18px;
    margin: 8px 0;
}

.sol-reviews .score-count {
    font-size: 14px;
    color: var(--gray-600);
}

/* 리뷰 마퀴 */
.sol-reviews .review-marquee-wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.sol-reviews .review-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sol-reviews .review-marquee::before,
.sol-reviews .review-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sol-reviews .review-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.sol-reviews .review-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #fff 100%);
}

.sol-reviews .review-marquee-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: sol-review-scroll 45s linear infinite;
}

@keyframes sol-review-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sol-reviews .review-marquee:hover .review-marquee-track {
    animation-play-state: paused;
}

/* 리뷰 카드 */
.sol-reviews .review-card {
    flex-shrink: 0;
    width: 380px;
    background: #f9fafb;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.sol-reviews .review-card:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.12);
    transform: translateY(-4px);
}

.sol-reviews .review-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 14px;
}

.sol-reviews .review-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #191f28;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sol-reviews .review-author-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sol-reviews .author-avatar-mini {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.sol-reviews .review-author-mini div {
    display: flex;
    flex-direction: column;
}

.sol-reviews .review-author-mini strong {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

.sol-reviews .review-author-mini span {
    font-size: 12px;
    color: #6b7684;
}

/* Responsive */
@media (max-width: 768px) {
    .sol-reviews {
        padding: 60px 0 40px;
    }

    .sol-reviews .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .sol-reviews .reviews-score {
        text-align: left;
    }

    .sol-reviews .score-number {
        font-size: 42px;
    }

    .sol-reviews .review-card {
        width: 320px;
        padding: 20px;
    }

    .sol-reviews .review-marquee::before,
    .sol-reviews .review-marquee::after {
        width: 80px;
    }
}
