/**
 * Swrice Plugin Page Manager - Frontend CSS
 * Dynamic Plugin Sales Page Styling (Based on Your Template)
 */

/* Import Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* CSS Variables - Your Exact Color Scheme */
:root {
    --page-bg: #fbfdff;
    --card-bg: #ffffff;
    --muted: #6b747b;
    --accent: #5fa0d8;
    --accent-dark: #4a8bbd;
    --text: #1f2b33;
    --soft: #f3f7fb;
    --shadow: 0 10px 30px rgba(29,42,63,0.06);
    --glass: linear-gradient(180deg, rgba(243,247,251,1) 0%, rgba(255,255,255,1) 100%);
}

/* Base Styles */
.sppm-plugin-page {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--page-bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    margin: 0;
    padding: 0;
}

/* Ensure all elements use Inter font */
.sppm-plugin-page * {
    font-family: inherit;
}

.sppm-container {
    margin: 20px 0;
    padding: 0 50px;
}

/* Hero Section */
.sppm-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 40px 28px;
    min-height: 500px;
}

.sppm-hero-left {
    flex: 1;
    width: 50%;
}

.sppm-logo-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.sppm-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.sppm-logo-mark svg {
    opacity: 0.95;
}

.sppm-logo-text {
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.sppm-rating {
    margin-bottom: 16px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(20,30,40,0.04);
    font-weight: 600;
    color: var(--muted);
}

.sppm-rating-stars {
    display: inline-flex;
    gap: 4px;
    color: #f5c158;
    font-weight: 700;
    font-size: 14px;
}

.sppm-hero-title {
    font-size: 44px;
    margin: 6px 0 12px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--text);
}

.sppm-hero-subtitle {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    max-width: 620px;
}

.sppm-hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

.sppm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow);
    text-decoration: none;
    font-family: inherit;
}

.sppm-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 18px rgba(79,136,183,0.18);
}

.sppm-btn-ghost {
    background: transparent;
    border: 1px solid rgba(30,40,50,0.06);
    color: var(--accent-dark);
    font-weight: 600;
}

/* Hero Right - Image/Device */
.sppm-hero-right {
    flex: 1;
    width: 50%;
    display: flex;
    justify-content: center;
}

.sppm-device {
    width: 100%;
    border-radius: 18px;
    padding: 28px;
    background: var(--glass);
    box-shadow: 0 18px 40px rgba(25,45,65,0.06);
    position: relative;
}

.sppm-device-inner {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(29,42,63,0.04);
}

.sppm-device h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
}

.sppm-section-row {
    background: #fbfdff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4f5b61;
    border: 1px solid rgba(16,24,32,0.02);
}

.sppm-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(25,45,65,0.06);
    transform: rotate(-6deg);
}

/* Section Spacing */
.sppm-section {
    margin-top: 48px;
    padding: 30px 0;
    border-top: 1px solid rgba(16,24,32,0.02);
}

.sppm-section:first-child {
    margin-top: 0;
    border-top: none;
}

/* Features Section */
.sppm-features-wrapper {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sppm-features-main {
    flex: 1;
    min-width: 320px;
}

.sppm-section-title {
    font-size: 32px;
    margin: 4px 0 18px;
    font-weight: 800;
}

.sppm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 40px;
    align-items: start;
}

.sppm-feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sppm-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.sppm-feature-title {
    font-weight: 700;
    margin: 0 0 6px;
}

.sppm-feature-desc {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Sidebar */
.sppm-sidebar {
    flex: 0 0 320px;
    min-width: 260px;
}

.sppm-sidebar-card {
    background: white;
    padding: 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.sppm-sidebar-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.sppm-sidebar-item {
    background: var(--soft);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.sppm-sidebar-item:last-child {
    margin-bottom: 0;
}

.sppm-sidebar-item strong {
    display: block;
    margin-bottom: 4px;
}

.sppm-sidebar-item-subtitle {
    color: var(--muted);
    font-size: 14px;
}

/* Checklist Section */
.sppm-checklist-title {
    font-size: 30px;
    margin: 0 0 12px;
    font-weight: 800;
}

.sppm-checklist {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.sppm-check-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20,30,40,0.03);
}

.sppm-check-icon {
    min-width: 22px;
    min-height: 22px;
}

.sppm-check-text {
    font-weight: 700;
}

/* Screenshots Section */
.sppm-screenshots-title {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 800;
}

.sppm-screenshots {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sppm-screenshot {
    background: white;
    border-radius: 14px;
    padding: 14px;
    min-width: 220px;
    flex: 1 1 220px;
    box-shadow: 0 12px 30px rgba(29,42,63,0.04);
}

.sppm-screenshot img {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Testimonials Section */
.sppm-testimonials-title {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 800;
}

.sppm-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 14px;
}

.sppm-testimonial-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sppm-testimonial-quote {
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
}

.sppm-testimonial-meta {
    font-size: 13px;
    color: var(--muted);
}

/* FAQ Section */
.sppm-faq-title {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 800;
}

.sppm-faq-list {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.sppm-faq-item {
    background: white;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(24,36,48,0.03);
}

.sppm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.sppm-faq-answer {
    margin-top: 8px;
    color: var(--muted);
    display: none;
}

.sppm-faq-item.open .sppm-faq-answer {
    display: block;
}

/* CTA Section */
.sppm-cta {
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(95,160,216,0.06) 0%, rgba(95,160,216,0.02) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sppm-cta-content {
    flex: 1;
}

.sppm-cta-title {
    font-weight: 800;
    font-size: 18px;
    margin: 0 0 6px;
}

.sppm-cta-subtitle {
    color: var(--muted);
    margin: 0;
}

.sppm-cta-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Section Headers */
.sppm-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sppm-section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sppm-section-icon {
    font-size: 36px;
}

/* Problem Section */
.sppm-problem-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

.sppm-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sppm-problem-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid #ff6b6b;
}

.sppm-problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.sppm-problem-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text);
}

.sppm-problem-desc {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Solution Section */
.sppm-solution-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.sppm-solution-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Steps Section */
.sppm-steps-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

.sppm-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.sppm-step-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--accent);
}

.sppm-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.sppm-step-title {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 12px;
    color: var(--text);
}

.sppm-step-desc {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Features Section - Simple, Clean & Responsive */
.sppm-features-section {
    background: var(--soft);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.sppm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sppm-feature-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(20, 30, 40, 0.06);
    text-align: center;
    border: 1px solid rgba(30, 40, 50, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.sppm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(20, 30, 40, 0.1);
    border-color: var(--accent);
}

.sppm-feature-card-header {
    margin-bottom: 16px;
}

.sppm-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: var(--soft);
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(95, 160, 216, 0.15);
}

.sppm-feature-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
}

.sppm-feature-card-body {
    /* No additional styling needed */
}

.sppm-feature-desc {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

/* Testimonials Section */
.sppm-testimonials-section {
    background: linear-gradient(135deg, #fef7ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

.sppm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.sppm-testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid #a855f7;
}

.sppm-testimonial-rating {
    font-size: 18px;
    margin-bottom: 16px;
}

.sppm-testimonial-content {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text);
}

.sppm-testimonial-author strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.sppm-testimonial-author span {
    color: var(--muted);
    font-size: 14px;
}

/* FAQ Section */
.sppm-faq-section {
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

/* Bonuses Section */
.sppm-bonuses-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

.sppm-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sppm-bonus-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid #8b5cf6;
}

.sppm-bonus-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.sppm-bonus-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}

.sppm-bonus-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.sppm-bonus-desc {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Guarantee Section */
.sppm-guarantee-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.sppm-guarantee-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 32px;
}

.sppm-guarantee-points {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.sppm-guarantee-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.sppm-guarantee-check {
    font-size: 20px;
    flex-shrink: 0;
}

/* Why Choose Section */
.sppm-why-choose-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
}

.sppm-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sppm-benefit-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid #3b82f6;
}

.sppm-benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.sppm-benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text);
}

.sppm-benefit-desc {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* About Section - Enhanced & Beautiful */
.sppm-about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 30, 40, 0.06);
    border: 1px solid rgba(30, 40, 50, 0.06);
}

.sppm-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3b82f6, #1d4ed8);
}

.sppm-about-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(95, 160, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.sppm-about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.sppm-about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 auto 20px;
    font-weight: 400;
}

.sppm-about-content p:last-child {
    margin-bottom: 0;
}

.sppm-about-section .sppm-section-title {
    position: relative;
    margin-bottom: 28px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.sppm-about-section .sppm-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3b82f6);
    border-radius: 2px;
}

/* Final CTA Section - Slim Header Style with Beautiful Background */
.sppm-final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.sppm-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.sppm-final-cta .sppm-cta {
    background: transparent;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.sppm-final-cta .sppm-cta-content {
    margin-bottom: 0;
    text-align: left;
    flex: 1;
}

.sppm-final-cta .sppm-cta-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.sppm-final-cta .sppm-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.sppm-final-cta .sppm-cta-buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.sppm-final-cta .sppm-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.sppm-final-cta .sppm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.sppm-final-cta .sppm-btn:hover::before {
    left: 100%;
}

.sppm-final-cta .sppm-btn-primary {
    background: white;
    color: #667eea;
    border: 1px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sppm-final-cta .sppm-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sppm-final-cta .sppm-btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sppm-final-cta .sppm-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 980px) {
    .sppm-hero {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 16px;
    }
    
    .sppm-hero-right {
        width: 100%;
        max-width: none;
        transform: none;
    }
    
    .sppm-device {
        transform: none;
        margin-top: 10px;
    }
    
    .sppm-hero-image {
        transform: none;
    }
    
    .sppm-features-grid,
    .sppm-problem-grid,
    .sppm-steps-grid,
    .sppm-testimonials-grid,
    .sppm-bonuses-grid,
    .sppm-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .sppm-hero-left {
        width: 100%;
        flex: none;
    }
    
    .sppm-hero-right {
        width: 100%;
        flex: none;
    }
    
    .sppm-container {
        padding: 0 20px;
    }
    
    .sppm-features-wrapper {
        flex-direction: column;
    }
    
    .sppm-sidebar {
        flex: none;
        width: 100%;
    }
    
    .sppm-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .sppm-final-cta {
        padding: 20px 24px;
    }
    
    .sppm-final-cta .sppm-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .sppm-final-cta .sppm-cta-content {
        text-align: center;
    }
    
    .sppm-final-cta .sppm-cta-buttons {
        justify-content: center;
    }
    
    .sppm-final-cta .sppm-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .sppm-section {
        padding: 24px;
    }
    
    .sppm-section-title {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .sppm-hero-title {
        font-size: 34px;
    }
    
    .sppm-device {
        padding: 18px;
    }
    
    .sppm-logo-mark {
        width: 44px;
        height: 44px;
    }
    
    .sppm-rating {
        font-size: 13px;
    }
    
    .sppm-btn {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .sppm-section-title {
        font-size: 28px;
    }
    
    .sppm-checklist-title {
        font-size: 26px;
    }
    
    .sppm-screenshots-title,
    .sppm-testimonials-title,
    .sppm-faq-title {
        font-size: 20px;
    }
}
