/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    margin-top: 72px;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-container {
    position: relative;
    padding: 4rem 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #bfdbfe;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #dbeafe;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.4);
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.guarantee-icon-hero {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon-hero svg {
    width: 28px;
    height: 28px;
    color: #86efac;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guarantee-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.guarantee-text span {
    font-size: 0.875rem;
    color: #dbeafe;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stats .stat-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-value svg {
    width: 20px;
    height: 20px;
    color: #bfdbfe;
}

.hero-stats .stat-value span {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: #bfdbfe;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #86efac;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item span {
    color: #dbeafe;
}

.card-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.info-row span:first-child {
    color: #bfdbfe;
}

.info-row span:last-child {
    font-weight: 600;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .description-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.description-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.prose p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose strong {
    color: #111827;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.bg-blue {
    background: #dbeafe;
    color: #2563eb;
}

.bg-green {
    background: #d1fae5;
    color: #059669;
}

.bg-purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.bg-orange {
    background: #fed7aa;
    color: #ea580c;
}

.benefit-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

.perfect-for-list {
    list-style: none;
    padding: 0;
}

.perfect-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.description-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.info-list .info-row {
    display: flex;
    justify-content: space-between;
}

.info-list .info-row span:first-child {
    color: #6b7280;
}

.info-list .info-row span:last-child {
    font-weight: 600;
    color: #111827;
}

.sidebar-support {
    background: linear-gradient(to bottom right, #2563eb, #7c3aed);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.sidebar-support h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sidebar-support p {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-support {
    width: 100%;
    background: white;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-support:hover {
    background: #dbeafe;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-list li {
    margin-bottom: 0.75rem;
}

.doc-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.doc-link:hover {
    color: #1d4ed8;
}

.doc-link svg {
    width: 16px;
    height: 16px;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title-center {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.feature-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 24px;
    height: 24px;
}

.bg-blue-100 {
    background: #dbeafe;
    color: #2563eb;
}

.bg-green-100 {
    background: #d1fae5;
    color: #059669;
}

.bg-purple-100 {
    background: #e9d5ff;
    color: #7c3aed;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid;
    transition: all 0.2s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-blue-50 {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.bg-green-50 {
    background: #f0fdf4;
    border-color: #86efac;
}

.bg-purple-50 {
    background: #faf5ff;
    border-color: #d8b4fe;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.additional-features {
    margin-top: 5rem;
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

.additional-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .extra-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .extra-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.extra-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.check-badge {
    width: 20px;
    height: 20px;
    background: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-badge svg {
    width: 12px;
    height: 12px;
    color: #059669;
}

.extra-feature span {
    color: #374151;
    font-size: 0.875rem;
}

/* Screenshots Section */
.screenshots-section {
    padding: 0.6rem 0;
}

.slider-container {
    position: relative;
    max-width: 72rem;
    margin: 0 auto 3rem;
}

.slider-main {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullscreen-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background 0.2s;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

/* Slider Caption Overlay */
.slider-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 70%, transparent);
    padding: 3rem 2rem 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-main:hover .slider-caption-overlay {
    opacity: 1;
}

.slider-caption-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.slider-caption-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .slider-caption-overlay {
        padding: 2rem 1rem 1rem;
    }
    
    .slider-caption-overlay h3 {
        font-size: 1.25rem;
    }
    
    .slider-caption-overlay p {
        font-size: 0.875rem;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.slider-arrow:hover {
    background: #f9fafb;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: #1f2937;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.screenshot-info {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border-radius: 0.75rem;
    padding: 2rem;
}

.screenshot-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.screenshot-info p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnails-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    opacity: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 4px #2563eb;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.thumbnail:hover .thumbnail-overlay,
.thumbnail.active .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay span {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Installation Section */
.installation-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.installation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .installation-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.installation-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-text {
    font-size: 1.125rem;
    color: #6b7280;
}

.installation-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.installation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.installation-method {
    margin-bottom: 2rem;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.method-icon svg {
    width: 20px;
    height: 20px;
}

.method-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.method-steps {
    list-style: none;
    margin-left: 3.25rem;
}

.method-steps li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.step-number {
    font-weight: 600;
    color: #2563eb;
    flex-shrink: 0;
}

code {
    background: #f3f4f6;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
}

.setup-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.setup-step {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.setup-step svg {
    width: 20px;
    height: 20px;
    color: #059669;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.setup-step h5 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.setup-step p {
    font-size: 0.875rem;
    color: #6b7280;
}

.troubleshooting {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.troubleshooting svg {
    width: 24px;
    height: 24px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.troubleshooting h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.troubleshooting ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0.75rem;
}

.troubleshooting li {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.support-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    color: #1d4ed8;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.requirement:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.req-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.req-header span {
    font-weight: 500;
    color: #111827;
}

.req-header svg {
    width: 16px;
    height: 16px;
    color: #059669;
}

.req-detail {
    color: #6b7280;
    font-size: 0.875rem;
}

.compatible-list {
    list-style: none;
    padding: 0;
}

.compatible-list li {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.developer-card {
    background: linear-gradient(to bottom right, #2563eb, #7c3aed);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.developer-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
}

.developer-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.developer-card p {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-docs {
    width: 100%;
    background: white;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-docs:hover {
    background: #dbeafe;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.reviews-sidebar {
    position: relative;
}

.rating-summary {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 6rem;
}

.overall-rating {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.rating-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

.overall-rating p {
    color: #6b7280;
    font-size: 0.875rem;
}

.rating-distribution {
    margin-bottom: 1.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.rating-bar span:first-child {
    font-weight: 500;
    color: #374151;
    width: 3rem;
}

.rating-bar span:last-child {
    color: #6b7280;
    width: 4rem;
    text-align: right;
}

.bar-bg {
    flex: 1;
    background: #e5e7eb;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
}

.bar-fill {
    background: #fbbf24;
    height: 100%;
    border-radius: 9999px;
}

.rating-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.rating-stats .stat {
    text-align: center;
}

.rating-stats .stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.rating-stats .stat-value svg {
    width: 20px;
    height: 20px;
}

.rating-stats .stat-value span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.rating-stats .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.btn-write-review {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-write-review:hover {
    background: #1d4ed8;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #2563eb, #7c3aed);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.reviewer-name-row h4 {
    font-weight: 600;
    color: #111827;
}

.verified-badge {
    background: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 500;
}

.reviewer-role {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-rating svg {
    width: 20px;
    height: 20px;
}

.review-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.review-content {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.review-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.review-action:hover {
    color: #2563eb;
}

.review-action svg {
    width: 16px;
    height: 16px;
}

.load-more-container {
    text-align: center;
    padding-top: 1.5rem;
}

.btn-load-more {
    background: white;
    color: #374151;
    padding: 0.75rem 2rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-load-more:hover {
    border-color: #9ca3af;
}

.trust-indicators {
    background: linear-gradient(to bottom right, #2563eb, #7c3aed);
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.trust-value svg {
    width: 24px;
    height: 24px;
}

.trust-value span {
    font-size: 2.25rem;
    font-weight: 700;
}

.trust-label {
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 56rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

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

.faq-question span {
    font-weight: 600;
    color: #111827;
    padding-right: 2rem;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #6b7280;
    line-height: 1.75;
}

.faq-answer.active {
    max-height: 24rem;
    padding: 0 1.5rem 1.25rem;
}

.faq-cta {
    margin-top: 3rem;
    text-align: center;
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.btn-contact {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-contact:hover {
    background: #1d4ed8;
}

/* Changelog Section */
.changelog-section {
    padding: 5rem 0;
    background: white;
}

.changelog-container {
    max-width: 56rem;
}

.changelog-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.changelog-entry {
    position: relative;
}

.changelog-card {
    position: relative;
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.changelog-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.changelog-header {
    margin-bottom: 1.5rem;
}

.version-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.version-icon {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.version-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.version-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.version-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.badge-major {
    background: #e9d5ff;
    color: #6b21a8;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.badge-patch {
    background: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.version-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.changelog-changes {
    margin-left: 3.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.change-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.change-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.change-icon svg {
    width: 16px;
    height: 16px;
}

.change-item p {
    color: #374151;
    padding-top: 0.25rem;
}

.changelog-footer {
    margin-top: 2rem;
    text-align: center;
}

.btn-view-all {
    color: #2563eb;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.btn-view-all:hover {
    color: #1d4ed8;
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.billing-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem;
    margin-top: 2rem;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    background: none;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn:hover {
    color: #111827;
}

.toggle-btn.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.save-badge {
    font-size: 0.75rem;
    background: #d1fae5;
    color: #065f46;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(to bottom right, #7c3aed, #2563eb);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #fbbf24;
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-bottom-left-radius: 0.5rem;
}

.plan-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #dbeafe, #e9d5ff);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-card.popular .plan-icon {
    background: rgba(255, 255, 255, 0.2);
}

.plan-icon svg {
    width: 24px;
    height: 24px;
    color: #7c3aed;
}

.pricing-card.popular .plan-icon svg {
    color: white;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.pricing-card.popular .plan-name {
    color: white;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-card.popular .plan-description {
    color: #bfdbfe;
}

.plan-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;    
    align-items: center;
    gap: 0.5rem;
}

.pricing-card.popular .price-amount {
    color: white;
}

/* Offer Price Styles */
.original-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 5px;
}

.pricing-card.popular .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.offer-price {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    position: relative;
}

.pricing-card.popular .offer-price {
    color: #fbbf24;
}

/* Plan Save Badge */
.plan-save-badge {
    position: absolute;
    top: 2.5rem;
    right: 0.5rem;
    background: #22c55e;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    z-index: 10;
}

/* Hide savings badge when monthly is active */
.pricing-card:has(.monthly-price) .plan-save-badge {
    display: none;
}

/* Show savings badge when yearly is active */
.pricing-card:has(.yearly-price) .plan-save-badge {
    display: block;
}

.price-period {
    color: #6b7280;
}

.pricing-card.popular .price-period {
    color: #bfdbfe;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.2s;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.btn-plan:hover {
    background: linear-gradient(to right, #1d4ed8, #6b21a8);
}

.pricing-card.popular .btn-plan {
    background: white;
    color: #7c3aed;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular .btn-plan:hover {
    background: #f3f4f6;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.pricing-card.popular .features-label {
    color: #bfdbfe;
}

.feature-item-plan {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item-plan svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-check {
    color: #059669;
}

.pricing-card.popular .feature-check {
    color: white;
}

.feature-x {
    color: #d1d5db;
}

.pricing-card.popular .feature-x {
    color: rgba(255, 255, 255, 0.4);
}

.feature-item-plan span {
    font-size: 0.875rem;
    color: #374151;
}

.pricing-card.popular .feature-item-plan span {
    color: white;
}

.feature-item-plan.disabled span {
    color: #d1d5db;
}

.pricing-card.popular .feature-item-plan.disabled span {
    color: rgba(255, 255, 255, 0.4);
}

.guarantee-section {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(to right, #f0fdf4, #eff6ff);
    border-radius: 1rem;
    padding: 2rem;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
    color: #059669;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.guarantee-section p {
    color: #374151;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}




/* ============================================
   Write Review Form Section
   ============================================ */
.no-reviews {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.login-prompt {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.login-prompt a {
    color: #3b82f6;
    font-weight: 600;
}

   /*******************************************/

.write-review-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.write-review-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.write-review-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.write-review-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.write-review-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.btn-close-form {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    border-radius: 0.375rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-form:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.btn-close-form svg {
    width: 20px;
    height: 20px;
}

.review-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.review-form {
    display: flex;
    flex-direction: column;
    
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .form-group:nth-child(3) {
        grid-column: 1 / -1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required {
    color: #ef4444;
    font-weight: bold;
}

.optional {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.8rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: -0.25rem;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 2rem;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    transition: all 0.2s ease;
    color: #d1d5db;
}

.star-label svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.star-label:hover,
.star-label:hover ~ .star-label {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-rating-input input[type="radio"]:checked ~ .star-label {
    color: #fbbf24;
}

.star-rating-input input[type="radio"]:checked ~ .star-label svg {
    fill: #fbbf24;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-submit-review {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-submit-review:active {
    transform: translateY(0);
}

.btn-submit-review svg {
    width: 20px;
    height: 20px;
}

.btn-reset-review {
    padding: 1rem 2rem;
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-reset-review:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-reset-review svg {
    width: 20px;
    height: 20px;
}

/* Success Message */
.review-success-message {
    text-align: center;
    padding: 3rem;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1s ease infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.success-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    stroke-width: 2.5;
}

.review-success-message h3 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.review-success-message p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .review-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit-review,
    .btn-reset-review {
        width: 100%;
        min-width: auto;
    }
}

/* Form Messages - Support.js Style */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #10b981;
    color: white;
    border: 1px solid #059669;
}

.form-message.error {
    background-color: #ef4444;
    color: white;
    border: 1px solid #dc2626;
}

/* Field Errors */
.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
    display: block;
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.error:focus,
.form-textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Helpful Button States */
.btn-helpful {
    transition: all 0.2s;
}

.btn-helpful:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

.btn-helpful.voted {
    background-color: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

.btn-helpful.voted:hover {
    background-color: #10b981;
    color: white;
}

/* Pending Badge */
.pending-badge {
    background-color: #f59e0b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Pagination Container */
.pagination-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination-info {
    color: #6b7280;
    font-size: 0.875rem;
}

.pagination-info span {
    font-weight: 600;
    color: #1f2937;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pagination:hover:not(:disabled) {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-number:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.page-number.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pagination-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.pagination-loading svg {
    animation: spin 1s linear infinite;
}

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

/* Reviews Loading */
.reviews-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.reviews-loading svg {
    animation: spin 1s linear infinite;
}