/**
 * Solution Detail Page Styles
 * Matches Node.js DetailPageTemplate design
 */

/* ==========================================================================
   Solution Hero - Two Column Layout
   ========================================================================== */
.sol-hero {
    position: relative;
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #111827 50%, #1e293b 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .sol-hero {
        padding: 8rem 0 5rem;
    }
}

.sol-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sol-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #030712 0%, #0f172a 50%, #1e293b 100%);
}

.sol-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.sol-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .sol-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Hero Content */
.sol-hero__content {
    order: 2;
}

@media (min-width: 1024px) {
    .sol-hero__content {
        order: 1;
    }
}

.sol-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.sol-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.sol-hero__breadcrumbs a:hover {
    color: #fff;
}

.sol-hero__breadcrumbs-sep {
    color: rgba(255, 255, 255, 0.3);
}

.sol-hero__breadcrumbs-current {
    color: rgba(255, 255, 255, 0.9);
}

.sol-hero__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1.25rem;
}

@media (min-width: 640px) {
    .sol-hero__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .sol-hero__title {
        font-size: 2.75rem;
    }
}

.sol-hero__tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
}

@media (min-width: 768px) {
    .sol-hero__tagline {
        font-size: 1.0625rem;
    }
}

.sol-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sol-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Aligned with global CTA: same gradient as .btn--primary */
.sol-hero__btn--primary {
    background: linear-gradient(135deg, var(--palc-primary, #0041C2) 0%, var(--palc-cyan, #00C2FF) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 194, 255, 0.25);
}

.sol-hero__btn--primary:hover {
    opacity: 0.95;
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.35);
}

.sol-hero__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sol-hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Image */
.sol-hero__image-wrapper {
    order: 1;
}

@media (min-width: 1024px) {
    .sol-hero__image-wrapper {
        order: 2;
    }
}

.sol-hero__image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 194, 255, 0.1) 100%);
}

.sol-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-hero__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-hero__image-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 194, 255, 0.2) 0%, transparent 50%);
}

/* ==========================================================================
   Solution Overview Section
   ========================================================================== */
.sol-overview {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .sol-overview {
        padding: 5rem 0;
    }
}

.sol-overview__header {
    margin-bottom: 2rem;
}

.sol-overview__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

@media (min-width: 768px) {
    .sol-overview__title {
        font-size: 1.75rem;
    }
}

.sol-overview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .sol-overview__grid {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 3rem;
    }
}

.sol-overview__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4B5563;
    margin: 0;
}

/* What We Deliver Card */
.sol-overview__card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.sol-overview__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.25rem;
}

.sol-overview__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sol-overview__card-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
}

.sol-overview__card-icon {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sol-overview__card-text strong {
    color: #111827;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.sol-section-header {
    margin-bottom: 2rem;
}

.sol-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

@media (min-width: 768px) {
    .sol-section-title {
        font-size: 1.75rem;
    }
}

.sol-section-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin: 0.5rem 0 0;
}

/* ==========================================================================
   Key Capabilities Section
   ========================================================================== */
.sol-capabilities {
    padding: 4rem 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .sol-capabilities {
        padding: 5rem 0;
    }
}

.sol-capabilities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .sol-capabilities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sol-capabilities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .sol-capabilities__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.sol-capability-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.sol-capability-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sol-capability-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 0.5rem;
    color: #0066FF;
    margin-bottom: 1rem;
}

.sol-capability-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.sol-capability-card__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* ==========================================================================
   Architecture Overview Section
   ========================================================================== */
.sol-architecture {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .sol-architecture {
        padding: 5rem 0;
    }
}

.sol-architecture__content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .sol-architecture__content {
        padding: 3rem;
    }
}

.sol-architecture__diagram {
    margin-bottom: 2rem;
}

.sol-architecture__visual {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sol-architecture__nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.sol-architecture__node {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
}

.sol-architecture__node span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.sol-architecture__node small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.sol-architecture__node--spine {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
}

.sol-architecture__node--leaf {
    background: rgba(0, 194, 255, 0.15);
    border-color: rgba(0, 194, 255, 0.3);
}

.sol-architecture__node--compute {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.sol-architecture__connectors {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.sol-architecture__labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.sol-architecture__label {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.sol-architecture__desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Why Choose PalC - KPIs Section
   ========================================================================== */
.sol-kpis {
    padding: 4rem 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .sol-kpis {
        padding: 5rem 0;
    }
}

.sol-kpis__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sol-kpis__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sol-kpi-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.sol-kpi-card__value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .sol-kpi-card__value {
        font-size: 2.5rem;
    }
}

.sol-kpi-card__metric {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.sol-kpi-card__desc {
    display: block;
    font-size: 0.8125rem;
    color: #6B7280;
}

/* ==========================================================================
   Key Benefits Section
   ========================================================================== */
.sol-benefits {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .sol-benefits {
        padding: 5rem 0;
    }
}

.sol-benefits__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .sol-benefits__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.sol-benefit-item {
    display: flex;
    gap: 0.875rem;
    padding: 1.25rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
}

.sol-benefit-item__icon {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sol-benefit-item__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem;
}

.sol-benefit-item__desc {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Use Cases Section
   ========================================================================== */
.sol-usecases {
    padding: 4rem 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .sol-usecases {
        padding: 5rem 0;
    }
}

.sol-usecases__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .sol-usecases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sol-usecases__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sol-usecase-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.sol-usecase-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sol-usecase-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 102, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.sol-usecase-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem;
}

.sol-usecase-card__desc {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Technical Specifications Section
   ========================================================================== */
.sol-specs {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .sol-specs {
        padding: 5rem 0;
    }
}

.sol-specs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .sol-specs__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sol-spec-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.sol-spec-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0066FF;
    margin: 0 0 0.75rem;
}

.sol-spec-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sol-spec-card__list li {
    font-size: 0.8125rem;
    color: #374151;
    padding: 0.375rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.sol-spec-card__list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Configuration Examples Section
   ========================================================================== */
.sol-config {
    padding: 4rem 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .sol-config {
        padding: 5rem 0;
    }
}

.sol-config__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .sol-config__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sol-config-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    overflow: hidden;
}

.sol-config-card__header {
    padding: 1.25rem;
    border-bottom: 1px solid #E5E7EB;
}

.sol-config-card__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0066FF 0%, #3B82F6 100%);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.sol-config-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.375rem;
}

.sol-config-card__desc {
    font-size: 0.8125rem;
    color: #6B7280;
    margin: 0;
}

.sol-config-card__code {
    background: #1e293b;
    padding: 1rem;
    overflow-x: auto;
}

.sol-config-card__code pre {
    margin: 0;
}

.sol-config-card__code code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #e2e8f0;
    white-space: pre;
}

/* ==========================================================================
   Ask PalC Section
   ========================================================================== */
.sol-askpalc {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .sol-askpalc {
        padding: 5rem 0;
    }
}

.sol-askpalc__content {
    max-width: 48rem;
    margin: 0 auto;
}

.sol-askpalc__widget {
    margin-bottom: 1.5rem;
}

.sol-askpalc__input-wrapper {
    display: flex;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    overflow: hidden;
}

.sol-askpalc__input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #111827;
}

.sol-askpalc__input::placeholder {
    color: #9CA3AF;
}

.sol-askpalc__input:focus {
    outline: none;
}

.sol-askpalc__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    background: #0066FF;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.sol-askpalc__submit:hover {
    background: #0052cc;
}

.sol-askpalc__prompts {
    text-align: center;
}

.sol-askpalc__prompts-label {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.sol-askpalc__prompts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.sol-askpalc__prompt-btn {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.sol-askpalc__prompt-btn:hover {
    background: #E5E7EB;
    color: #111827;
}

/* ==========================================================================
   Related Resources Section
   ========================================================================== */
.sol-resources {
    padding: 4rem 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .sol-resources {
        padding: 5rem 0;
    }
}

.sol-resources__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .sol-resources__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sol-resources__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sol-resource-card {
    display: block;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sol-resource-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.sol-resource-card__image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-resource-card__placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.sol-resource-card__content {
    padding: 1.25rem;
}

.sol-resource-card__type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.sol-resource-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.sol-resource-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0066FF;
}

/* ==========================================================================
   Solution CTA Section
   ========================================================================== */
.sol-cta {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .sol-cta {
        padding: 5rem 0;
    }
}

.sol-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sol-cta__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #001a4d 0%, #002266 50%, #001a4d 100%);
}

.sol-cta__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.sol-cta__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.sol-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .sol-cta__title {
        font-size: 2rem;
    }
}

.sol-cta__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.sol-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.sol-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Aligned with global CTA: same gradient as .btn--primary */
.sol-cta__btn--primary {
    background: linear-gradient(135deg, var(--palc-primary, #0041C2) 0%, var(--palc-cyan, #00C2FF) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 194, 255, 0.25);
}

.sol-cta__btn--primary:hover {
    opacity: 0.95;
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.35);
}

.sol-cta__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sol-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
