/* Home Page Dedicated CSS - MyLinks.top */

.banner-result {
    margin-top: -30px;
    margin-bottom: 80px;
}

/* Custom CSS for SEO Article in Index.cshtml */
.seo-article {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
}
.seo-article h2 {
    font-size: 24px;
    color: #414785;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    text-align: left;
}
.seo-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: #7859da;
    border-radius: 2px;
}
.seo-article h3 {
    font-size: 19px;
    color: #414785;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}
.seo-article p {
    margin-bottom: 20px;
    text-align: left;
}
.seo-article strong {
    color: #1a202c;
}
.seo-article ol, .seo-article ul {
    margin-bottom: 25px;
    padding-left: 20px;
    text-align: left;
}
.seo-article li {
    margin-bottom: 8px;
    text-align: left;
}

/* BLUF Block style */
.bluf-box {
    background: rgba(120, 89, 218, 0.05);
    border-left: 4px solid #7859da;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.bluf-box p {
    margin: 0 !important;
    font-style: italic;
    color: #4a5568;
}

/* Comparison Table style */
.comp-table-container {
    overflow-x: auto;
    margin: 35px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}
.comp-table th {
    background: #f7fafc;
    color: #4a5568;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}
.comp-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
    transition: all 0.2s ease;
    text-align: left;
}
.comp-table tr:hover td {
    background-color: #fcfcfc;
}
.comp-table tr.highlight-row {
    background-color: rgba(120, 89, 218, 0.02);
}
.comp-table tr.highlight-row td {
    border-left: 2px solid #7859da;
    border-right: 2px solid #7859da;
    font-weight: 500;
}
.comp-table tr.highlight-row:first-child td {
    border-top: 2px solid #7859da;
}
.comp-table tr.highlight-row:last-child td {
    border-bottom: 2px solid #7859da;
}
.comp-table .badge-custom {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.comp-table .badge-success {
    background-color: #c6f6d5;
    color: #22543d;
}
.comp-table .badge-danger {
    background-color: #fed7d7;
    color: #742a2a;
}
.comp-table .badge-warning {
    background-color: #feebc8;
    color: #744210;
}

/* Horizontal Benchmark Speed Chart style */
.speed-chart-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 35px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.speed-chart-title {
    font-weight: 700;
    font-size: 16px;
    color: #414785;
    margin-bottom: 20px;
    text-align: left;
}
.chart-row {
    margin-bottom: 20px;
}
.chart-row:last-child {
    margin-bottom: 0;
}
.chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4a5568;
}
.chart-bar-bg {
    background: #edf2f7;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.chart-bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}
.chart-bar-mylinks {
    background: linear-gradient(90deg, #7859da 0%, #5c27fe 100%);
    width: 25%;
}
.chart-bar-bitly {
    background: #ed8936;
    width: 75%;
}
.chart-bar-tinyurl {
    background: #e53e3e;
    width: 100%;
}

/* Security Grid cards */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 35px 0;
}
.security-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #7859da;
}
.security-card-icon {
    font-size: 32px;
    color: #7859da;
    margin-bottom: 15px;
}
.security-card-title {
    font-weight: 700;
    font-size: 16px;
    color: #414785;
    margin-bottom: 10px;
}
.security-card-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

/* Admin Dashboard Mockup */
.mockup-container {
    background: #1a202c;
    border-radius: 12px;
    padding: 20px;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 35px 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: left;
}
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2d3748;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background-color: #f56565; }
.dot-yellow { background-color: #ecc94b; }
.dot-green { background-color: #48bb78; }
.mockup-title {
    font-size: 13px;
    color: #a0aec0;
}
.mockup-body {
    padding: 10px 5px;
}
.mockup-input-group {
    margin-bottom: 15px;
}
.mockup-label {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 5px;
    font-weight: 600;
}
.mockup-input-readonly {
    background-color: #2d3748;
    border: 1px solid #4a5568;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #cbd5e0;
}
.mockup-input-editable {
    background-color: #2d3748;
    border: 1px solid #7859da;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.mockup-input-editable:hover {
    border-color: #3182ce;
}
.mockup-btn {
    background-color: #7859da;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.mockup-btn:hover {
    background-color: #5c27fe;
}
.mockup-tooltip {
    font-size: 11px;
    color: #a0aec0;
    margin-top: 5px;
}

/* Code steps block */
.code-steps-box {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}
.code-step-item {
    display: flex;
    margin-bottom: 15px;
}
.code-step-item:last-child {
    margin-bottom: 0;
}
.code-step-number {
    width: 28px;
    height: 28px;
    background-color: #7859da;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}
.code-step-content {
    font-size: 15px;
    color: #4a5568;
    text-align: left;
}
.code-step-content code {
    background-color: #edf2f7;
    color: #e53e3e;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 90%;
}

/* Testimonial Box in Why Section */
.why-testimonial {
    background: rgba(120, 89, 218, 0.05);
    border-left: 4px solid #7859da;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.why-testimonial-quote {
    font-style: italic;
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
    position: relative;
}
.why-testimonial-quote::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 40px;
    color: rgba(120, 89, 218, 0.3);
    position: absolute;
    left: -15px;
    top: -20px;
}
.why-testimonial-author {
    font-size: 13.5px;
    font-weight: bold;
    color: #414785;
}
.why-testimonial-author a {
    color: #7859da;
    text-decoration: underline;
}

/* Custom CSS for Use Cases Section */
.use-case-card {
    transition: all 0.3s ease !important;
}
.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #7859da !important;
}
.use-case-card .icon-wrap {
    transition: all 0.3s ease;
}
.use-case-card:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

/* Comparison Section Styles */
.comp-section {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.comp-tab-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    color: #495057;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    font-family: "Josefin Sans", sans-serif;
}

.comp-tab-btn.active {
    background: #7859da;
    color: #ffffff;
    border-color: #7859da;
    box-shadow: 0 4px 15px rgba(120, 89, 218, 0.25);
}

.comp-pane {
    animation: compFadeIn 0.4s ease;
}

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

.premium-table-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-bottom: 20px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background: #f8f9fa;
    color: #414785;
    font-weight: 700;
    padding: 18px 20px;
    font-size: 14.5px;
    border-bottom: 2px solid #e9ecef;
    font-family: "Josefin Sans", sans-serif;
}

.premium-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: middle;
    font-family: "Open Sans", sans-serif;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

/* Highlight MyLinks column */
.premium-table th.mylinks-col {
    background: linear-gradient(to bottom, #7859da, #5c27fe);
    color: #ffffff;
    text-align: center;
    border-bottom: none;
}

.premium-table td.mylinks-col {
    background-color: rgba(120, 89, 218, 0.02);
    text-align: center;
    font-weight: 700;
    border-left: 1px solid rgba(120, 89, 218, 0.1);
    border-right: 1px solid rgba(120, 89, 218, 0.1);
}

.premium-table tr:last-child td.mylinks-col {
    border-bottom: 1px solid rgba(120, 89, 218, 0.05);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Badges styles */
.comp-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    font-family: "Josefin Sans", sans-serif;
}

.comp-badge-success {
    background: rgba(120, 89, 218, 0.1);
    color: #7859da;
}

.comp-badge-warning {
    background: rgba(254, 122, 106, 0.1);
    color: #fe7a6a;
}

.comp-badge-danger {
    background: rgba(238, 71, 48, 0.1);
    color: #ee4730;
}

.comp-badge-info {
    background: rgba(0, 162, 255, 0.1);
    color: #00a2ff;
}

/* Trust Section Styles */
.trust-section {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.trust-shield-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(120, 89, 218, 0.02), rgba(231, 65, 121, 0.02));
    border: 1px dashed rgba(120, 89, 218, 0.25);
    border-radius: 24px;
    text-align: center;
    height: 100%;
}

.shield-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #7859da, #e74179);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 54px;
    box-shadow: 0 15px 35px rgba(120, 89, 218, 0.2);
    margin-bottom: 25px;
    position: relative;
}

.shield-pulse {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(120, 89, 218, 0.2);
    border-radius: 50%;
    animation: trustPulse 2s infinite ease-in-out;
}

@keyframes trustPulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.trust-feature-group {
    margin-bottom: 30px;
}

.trust-group-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #495057;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-family: "Josefin Sans", sans-serif;
}

.trust-group-title i {
    margin-right: 10px;
    font-size: 18px;
}

.trust-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.trust-card:hover {
    border-color: #7859da;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.trust-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 15px;
}

.icon-bg-blue {
    background: rgba(0, 162, 255, 0.1);
    color: #00a2ff;
}

.icon-bg-green {
    background: rgba(120, 89, 218, 0.1);
    color: #7859da;
}

.icon-bg-red {
    background: rgba(238, 71, 48, 0.1);
    color: #ee4730;
}

.trust-card-content h5 {
    font-size: 15px;
    font-weight: 700;
    color: #414785;
    margin-bottom: 5px;
    font-family: "Josefin Sans", sans-serif;
}

.trust-card-content p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
}

/* CTA Section Styles */
.cta-section {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.premium-cta-card {
    background: linear-gradient(135deg, #c165dd 0%, #7859da 50%, #5c27fe 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(120, 89, 218, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: -1;
}

.premium-cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(231,65,121,0.15) 0%, rgba(231,65,121,0) 70%);
    pointer-events: none;
    z-index: -1;
}

.cta-badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: none;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 35px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background-color: #ffffff;
    color: #7859da !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background-color: transparent;
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.cta-benefit-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
}

.cta-benefit-inline i {
    color: #e74179;
    background: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    .premium-cta-card {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-desc {
        font-size: 14px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .btn-cta-primary, .btn-cta-secondary {
        justify-content: center;
    }
}

/* Hero Form Tabs Dedicated CSS */
.hero-tab-btn {
    background: transparent !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 8px 16px !important;
    color: #6c757d !important;
    border-bottom: 3px solid transparent !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    position: relative !important;
    z-index: 100000 !important;
    pointer-events: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    box-shadow: none !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
}
.hero-tab-btn.active {
    color: #7859da !important;
    border-bottom: 3px solid #7859da !important;
}
.hero-tab-btn:hover {
    color: #7859da !important;
}

/* Index Body Elements Classes */
.banner-alert-warning {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
}

.banner-form-group-relative {
    position: relative;
    z-index: 10;
}

.status-badge-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    font-size: 13px;
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}

.form-alert-danger {
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.form-tabs-wrapper {
    gap: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    position: relative;
    z-index: 9999;
}

.form-warning-wrapper {
    flex-basis: 100%;
    line-height: 1.6;
}

.form-warning-text {
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.icon-mr-4 {
    margin-right: 4px;
}

.warning-link {
    text-decoration: underline;
    color: inherit;
    font-weight: bold;
}

.security-badges-row {
    flex-basis: 100%;
    gap: 10px;
    font-size: 13px;
    color: #495057;
}

.badge-icon-16 {
    font-size: 16px;
}

.flex-basis-100 {
    flex-basis: 100%;
}

.form-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.form-checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.display-none {
    display: none;
}

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

.input-group-max-400 {
    max-width: 400px;
}

.rounded-right-5 {
    border-radius: 0 5px 5px 0;
}

.rounded-5 {
    border-radius: 5px;
}

.member-register-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.fs-15-bold {
    font-size: 15px;
    font-weight: bold;
}

.fs-13 {
    font-size: 13px;
}

.gap-10 {
    gap: 10px;
}

.utm-builder-box {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    flex-basis: 100%;
}

.fs-16-bold {
    font-size: 16px;
    font-weight: bold;
}

.utm-label {
    font-size: 12px;
    margin-bottom: 5px;
}

.shorten-result-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    flex-basis: 100%;
}

.fs-18 {
    font-size: 18px;
}

.result-short-url-input {
    background: #f8f9fa;
    font-size: 16px;
    border: 1px solid #ced4da;
    height: 50px;
}

.btn-h-50 {
    height: 50px;
}

.result-qr-box {
    border: 1px solid #dee2e6;
    min-width: 150px;
    min-height: 150px;
}

.pain-solution-section-bg {
    background-color: #fcfdfe;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.section-title-28 {
    font-size: 28px;
    font-weight: 800;
    color: #414785;
    margin-bottom: 15px;
    text-transform: none;
}

.section-desc-15 {
    font-size: 15px;
    color: #4b5563;
}

.pain-card-box {
    background: #fff5f5;
    border: 1px solid #ffe3e3;
    border-radius: 8px;
    border-left: 5px solid #e53e3e;
}

.pain-card-title {
    font-size: 15px;
}

.pain-card-desc {
    font-size: 13.5px;
    line-height: 1.5;
}

.solution-card-box {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
    border-left: 5px solid #38a169;
}

.solution-card-title {
    font-size: 15px;
}

.solution-card-desc {
    font-size: 13.5px;
    line-height: 1.5;
}

.btn-toggle-pains {
    border-radius: 30px;
    font-size: 15px;
    border-color: #7859da;
    color: #7859da;
    background: transparent;
    cursor: pointer;
}

/* Feature & Extension Section Helpers */
.feature-title-no-transform { text-transform: none; }
.feature-tab-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; gap: 8px; }
.feature-tab-item { flex: 0 0 auto; min-width: 140px; }

.mockup-box-500 {
    max-width: 500px;
    background: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
}
.mockup-header-border { border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding-bottom: 8px; }
.mockup-dots-gap { gap: 6px; }
.mockup-dot-red { width: 10px; height: 10px; background: #ff5f56; border-radius: 50%; display: inline-block; }
.mockup-dot-yellow { width: 10px; height: 10px; background: #ffbd2e; border-radius: 50%; display: inline-block; }
.mockup-dot-green { width: 10px; height: 10px; background: #27c93f; border-radius: 50%; display: inline-block; }
.mockup-title-sub { font-size: 12px; opacity: 0.85; }
.mockup-label-sm { font-size: 12px; }
.mockup-btn-active { border-radius: 5px; font-size: 11px; padding: 5px 10px; border: none; }
.mockup-btn-outline { border-radius: 5px; font-size: 11px; padding: 5px 10px; background: transparent; border: 1px solid #fff; }
.mockup-result-box { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; font-size: 14px; }
.mockup-dest-url-box { background: rgba(255, 255, 255, 0.25); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; font-size: 13px; }
.mockup-dest-note { font-size: 11px; }
.mockup-save-btn { border-radius: 4px; font-size: 12px; background-color: #7859da; border-color: #7859da; }

.border-right-light { border-right: 1px solid rgba(0,0,0,0.1); }
.extension-title { font-size: 16px; color: #414785; }
.text-icon-blue { color: #00a2ff; }
.extension-desc { font-size: 13px; line-height: 1.6; }
.extension-btn { border-radius: 5px; background-color: #fe7a6a; border-color: #fe7a6a; }
.api-code-block { background: #1a202c; font-family: monospace; font-size: 11px; overflow-x: auto; border: 1px solid #2d3748; max-height: 150px; }

.use-cases-section-bg { background-color: #f8f9fa; border-top: 1px solid #e9ecef; border-bottom: 1px solid #e9ecef; }
.use-cases-title { font-size: 28px; font-weight: 800; text-transform: none; line-height: 1.4; color: #414785; margin-bottom: 15px; font-family: 'Josefin Sans', sans-serif; }
.use-cases-desc { font-size: 15px; color: #6c757d; max-width: 800px; margin: 0 auto; font-family: 'Open Sans', sans-serif; }
.use-case-card-container { background: #ffffff; border: 1px solid #e9ecef; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.use-case-icon-wrap { width: 60px; height: 60px; background: rgba(120, 89, 218, 0.1); color: #7859da; border-radius: 50%; font-size: 24px; flex-shrink: 0; }
.use-case-card-heading { font-size: 18px; text-align: left; color: #414785; font-family: 'Josefin Sans', sans-serif; }
.use-case-card-sub { font-size: 12px; display: block; text-align: left; font-family: 'Open Sans', sans-serif; }



