/* ================================================
   SEO & AI SCANNER - COMBINED STYLES
   ================================================ */

/* CSS Variables */
:root {
    --primary: #16B4BE;
    --accent: #DD0E56;
    --bg: #F8F8F8;
    --card: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ================================================
   BASE & LAYOUT
   ================================================ */

.seo-ai-scanner-widget {
    max-width: 100%;
    margin: 0 auto;
}

.sas-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.sas-left-column,
.sas-right-column {
    min-height: 400px;
}

.sas-form-container {
    background: var(--card);
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* ================================================
   HERO SECTION
   ================================================ */

.sas-hero-container {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.sas-hero-container:before,
.sas-hero-container:after {
    content: '';
    position: absolute;
    border: 2px solid rgba(22, 180, 190, 0.1);
    border-radius: 50%;
}

.sas-hero-container:before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    transform: rotate(-45deg);
}

.sas-hero-container:after {
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
}

.sas-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sas-header {
    text-align: center;
    padding: 20px 20px 40px;
    position: relative;
}

/* Pricing Badge */
.sas-pricing-badge {
    position: absolute;
    top: -36px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.sas-pricing-label {
    font-family: 'Kalam', cursive;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.sas-pricing-amount {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin: 3px 0;
}

.sas-pricing-period {
    font-size: 12px;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

.sas-hero-title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.sas-title-dark {
    font-family: 'Kalam', cursive;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    letter-spacing: .5px;
    font-size: 30px;
}

.sas-title-light,
.sas-subtitle {
    font-family: var(--font-lora);
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    display: block;
    padding-top: 11px;
}

.sas-title-light span,
.sas-subtitle span {
    font-weight: 700;
}

.sas-section-title {
    font-size: 24px;
    font-family: 'Kalam';
    color: var(--accent);
    font-weight: bolder;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px 0;
}

.sas-section-title .accordion-icon {
    font-size: 20px;
    transition: transform .3s;
    cursor: pointer;
}

.sas-section-title.collapsed .accordion-icon {
    transform: rotate(-90deg);
}

/* ================================================
   TABS
   ================================================ */

.sas-tabs {
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.sas-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
    color: #092041;
}

.sas-tab:hover {
    color: var(--primary);
}

.sas-tab-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.sas-tab-content {
    display: none;
    background: var(--card);
    padding: 30px;
    border-radius: 0 0 12px 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.sas-tab-content-active {
    display: block;
}

/* ================================================
   FORMS & INPUTS
   ================================================ */

.sas-form-intro {
    margin-bottom: 20px;
}

.sas-form-intro h3 {
    font-family: 'Kalam';
    color: var(--accent);
    font-size: 35px;
    font-weight: bolder;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    letter-spacing: .5px;
}

.sas-form-intro p {
    font-size: 14px;
    margin: 0;
}

.sas-form-group {
    margin-bottom: 20px;
}

.sas-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.sas-required {
    color: #ef4444;
}

.sas-url-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: .3s;
    background: #fff;
}

.sas-url-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22,180,190,.1);
}

.sas-hint {
    display: block;
    margin-top: 5px;
    color: #9ca3af;
    font-size: 13px;
}

/* Modern Input Group */
.sas-input-wrapper {
    max-width: 100%;
}

.sas-input-group-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.sas-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.sas-url-input-modern {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    padding: 0;
}

.sas-url-input-modern::placeholder {
    color: #bdc3c7;
}

/* ================================================
   BUTTONS
   ================================================ */

.sas-scan-button {
    margin: 0px !important;
    border: none !important;
}

.sas-scan-button-bk {
    background: none;
}

.sas-scan-button-modern {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    white-space: nowrap;
}

.sas-scan-button-modern:hover {
    background: #234a48;
    transform: translateX(3px);
}

.sas-scan-button-modern:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.sas-button-icon {
    font-size: 12px;
}

.sas-button-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sas-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sas-spin .8s linear infinite;
}

.sas-contact-button {
    display: inline-flex !important;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #DD0E56 0%, #B50C46 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
    transition: .3s;
}

.sas-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 14, 86, 0.4);
}

/* ================================================
   RESULTS
   ================================================ */

.sas-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    animation: sas-fadeIn .5s, fadeInUp 0.6s ease-out;
    background: #fff;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
}

.sas-results-header {
    padding: 0 0 0 30px;
    border-bottom: 2px solid #f0f0f0;
}

.sas-results-url {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 0;
    word-break: break-all;
}

.sas-results-url strong {
    font-family: 'Kalam';
    color: var(--accent);
    font-size: 18px;
    font-weight: bolder;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -10px;
    letter-spacing: .5px;
}

.sas-results-url a {
    font-family: var(--font-lora);
    font-size: 18px;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 0;
    color: #16B4BE;
    text-decoration: none;
}

.sas-results-url a:hover {
    text-decoration: underline;
    border-bottom-color: #fff;
}

/* ================================================
   SCORE CARDS
   ================================================ */

.sas-score-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #fff;
    padding: 30px 0 0 30px;
    border-radius: 0 0 12px 12px;
    margin-bottom: 25px;
}

.sas-score-card {
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    animation: fadeInUp 0.6s ease-out;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
}

.sas-score-card:nth-child(2) {
    animation-delay: 0.1s;
}

.sas-score-card:nth-child(3) {
    animation-delay: 0.2s;
}

.sas-score-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Kalam';
    color: var(--accent);
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
}

.sas-score-value {
    font-family: var(--font-lora);
    color: var(--title-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.sas-score-grade {
    font-family: var(--font-lora);
    line-height: 1.2;
    color: var(--title-color);
    opacity: .9;
    font-size: 14px;
}

.sas-score-bar {
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.sas-score-fill {
    height: 100%;
    background: #16B4BE;
    border-radius: 3px;
    transition: width 1s ease;
}

/* ================================================
   SUMMARY SECTION
   ================================================ */

.sas-summary {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sas-summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.sas-summary-stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.sas-summary-stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.sas-summary-stat-number.good {
    color: #10b981;
}

.sas-summary-stat-number.warning {
    color: #f59e0b;
}

.sas-summary-stat-number.critical {
    color: #ef4444;
}

.sas-summary-stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* ================================================
   ISSUES SECTION
   ================================================ */

.sas-issues-section {
    margin: 30px 0;
}

.sas-issues-content {
    overflow: hidden;
    transition: max-height .3s ease-out;
}

.sas-issues-content.collapsed {
    max-height: 0;
}

.sas-issues-list {
    display: grid;
    gap: 15px;
}

.sas-issue-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #ddd;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.sas-issue-item.status-good,
.sas-issue-item.sas-issue-info {
    border-left-color: #4CAF50;
    background: #f1f8f4;
}

.sas-issue-item.status-warning,
.sas-issue-item.sas-issue-warning {
    border-left-color: #ff9800;
    background: #fff8f0;
}

.sas-issue-item.status-error,
.sas-issue-item.sas-issue-critical {
    border-left-color: #f44336;
    background: #fef5f5;
}

.sas-issue-item.status-info {
    border-left-color: #2196F3;
    background: #f0f7ff;
}

.sas-issue-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sas-issue-content {
    flex: 1;
    margin-top: 8px;
}

.sas-issue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sas-issue-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.sas-issue-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sas-issue-badge.priority-high {
    background: #ff5252;
    color: #fff;
}

.sas-issue-badge.priority-medium {
    background: #ff9800;
    color: #fff;
}

.sas-issue-badge.priority-low {
    background: #4CAF50;
    color: #fff;
}

.sas-issue-desc,
.sas-issue-message {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sas-issue-recommendation {
    font-size: 13px;
    color: #555;
    background: rgba(0,0,0,.03);
    padding: 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.sas-issue-recommendation:before {
    content: "💡 ";
    margin-right: 5px;
}

.sas-issue-locked {
    margin-top: 10px;
    padding: 12px;
    background: rgba(255, 152, 0, .1);
    border-left: 3px solid #ff9800;
    border-radius: 4px;
    font-size: 14px;
    color: #e65100;
}

.sas-more-issues {
    text-align: center;
    padding: 12px;
    color: #6b7280;
    font-size: 13px;
    font-style: italic;
}

/* ================================================
   CTA SECTION
   ================================================ */

.sas-cta-container {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px dashed #d1d5db;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.sas-cta-badge {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Kalam';
    color: var(--accent);
    font-size: 18px;
    font-weight: bolder;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    letter-spacing: .5px;
}

.sas-cta-title {
    font-family: 'Kalam';
    letter-spacing: .5px;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.sas-cta-subtitle {
    font-family: var(--font-lora);
    font-weight: 100;
    color: var(--title-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sas-cta-subtitle span {
    font-weight: 700;
}

.sas-cta-button {
    display: inline-block;
}

.sas-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.sas-cta-feature {
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: start;
    gap: 10px;
}

.sas-cta-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.sas-cta-feature-text {
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--font-lora);
    font-weight: 100;
    margin-bottom: 35px;
    color: var(--title-color);
}

.sas-cta-button-action {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #DD0E56 0%, #B50C46 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 20px;
    transition: all 0.3s;
}

.sas-cta-button-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 14, 86, 0.4);
}

.sas-cta-note {
    display: block;
    margin-top: 12px;
    color: #6b7280;
    font-size: 12px;
}

.sas-limited-badge {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ================================================
   CONTACT MESSAGE
   ================================================ */

.sas-contact-message {
    text-align: center;
    padding: 40px 20px;
}

.sas-contact-message h3 {
    font-family: 'Kalam';
    color: var(--accent);
    font-size: 35px;
    font-weight: bolder;
    line-height: 1.1;
    letter-spacing: .5px;
    margin: 0 0 15px;
}

.sas-contact-message p {
    font-weight: 100;
}

.sas-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sas-benefits li {
    padding: 8px 0;
    color: #374151;
    font-size: 14px;
}

/* ================================================
   PLACEHOLDER
   ================================================ */

.sas-placeholder {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px dashed #d1d5db;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content h3 {
    font-family: 'Kalam';
    color: var(--accent);
    font-size: 30px;
    font-weight: bolder;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    letter-spacing: .5px;
}

.placeholder-features {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.feature-item {
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.feature-item svg {
    fill: #16B4BE;
    min-width: 20px;
}

.feature-icon {
    font-size: 20px;
}

.sas-blur-content {
    position: relative;
}

.sas-blur-content.blurred .sas-issue-message,
.sas-blur-content.blurred .sas-issue-recommendation,
.sas-blur-content.blurred .sas-issue-value,
.sas-blur-content.blurred .sas-issue-detail {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.sas-blur-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ================================================
   TRUST BADGES
   ================================================ */

.sas-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 20px;
}

.trust-badge {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* ================================================
   ERROR DISPLAY
   ================================================ */

.sas-error {
    padding: 20px;
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 10px;
    color: #991b1b;
    text-align: center;
}

.sas-error strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes sas-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sas-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .sas-two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0px;
    }

    .sas-form-container {
        position: relative;
        top: 0;
    }

    .sas-placeholder {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .sas-pricing-badge {
        width: 100px;
        height: 100px;
        top: -95px;
        right: 0px;
    }

    .sas-pricing-amount {
        font-size: 20px;
    }

    .sas-pricing-label {
        font-size: 14px;
    }

    .sas-score-cards {
        grid-template-columns: 1fr;
        padding: 30px 20px 0 20px;
    }

    .sas-results-header {
        padding: 0 0 0 20px;
    }

    .sas-results {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .sas-hero-container {
        padding: 60px 15px;
    }

    .sas-header {
        padding-top: 40px;
        padding-bottom: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .sas-hero-title {
        font-size: 24px;
        margin-bottom: 0px;
        text-align: left;
    }

    .sas-title-dark {
        letter-spacing: 0.5px;
        line-height: 1.1;
        font-size: 30px;
        text-align: left;
    }

    .sas-subtitle,
    .sas-title-light {
        text-align: left;
        font-family: var(--font-dmsans);
        font-size: 16px;
        font-weight: 400;
    }

    .sas-tabs {
        flex-direction: column;
    }

    .sas-tab {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        color: #092041;
    }

    .sas-tab-active {
        border-left-color: var(--primary);
    }

    .sas-tab-content {
        padding: 30px 20px;
    }

    .sas-input-group-modern {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .sas-input-label {
        text-align: center;
    }

    .sas-scan-button-modern {
        width: 100%;
        justify-content: center;
    }

    .sas-score-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 30px 20px 0 20px;
    }

    .sas-score-value {
        font-size: 36px;
    }

    .sas-summary-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sas-summary-stat-number {
        font-size: 24px;
    }

    .sas-cta-features {
        grid-template-columns: 1fr;
    }

    .sas-cta-title {
        font-size: 22px;
    }

    .sas-cta-subtitle {
        font-size: 14px;
    }

    .sas-cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .sas-section-title {
        font-size: 18px;
    }

    .sas-issue-item {
        padding: 12px;
    }

    .sas-results-header {
        padding: 0 0 0 20px;
    }

    .sas-results {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .sas-trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .trust-badge {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .sas-hero-title {
        font-size: 28px;
    }

    .sas-title-dark {
        font-size: 22px;
    }

    .sas-pricing-badge {
        width: 90px;
        height: 90px;
        top: -85px;
    }

    .sas-pricing-amount {
        font-size: 18px;
    }

    .sas-pricing-label {
        font-size: 12px;
    }

    .sas-score-cards {
        padding: 20px 15px 0 15px;
    }

    .sas-score-value {
        font-size: 32px;
    }

    .sas-section-title {
        font-size: 16px;
    }

    .sas-cta-container {
        padding: 20px 15px;
    }
}