/* Half Shell Studios custom layer */
:root {
    --hss-ink: #052529;
    --hss-shell: #7cd640;
    --hss-shell-dark: #4ba314;
    --hss-deep: #021214;
    --hss-cloud: #f5f7f8;
    --hss-sand: #e1e7ea;
    --hss-font-heading: "Bungee", "Gabarito", system-ui;
    --hss-font-body: "Gabarito", "Inter", system-ui;
    --hss-hero-1: #062d32;
    --hss-hero-2: #0b1f22;
    --hss-hero-3: #07282d;
    --hss-glow-strong: rgba(124, 214, 64, 0.25);
    --hss-glow-soft: rgba(124, 214, 64, 0.15);
}

body {
    font-family: var(--hss-font-body);
    background-color: var(--hss-cloud);
    color: var(--hss-ink);
}

/* Header styling */
.header-main {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-main .nav-link {
    color: var(--hss-ink) !important;
}

.header-main .nav-link:hover {
    color: var(--hss-shell) !important;
}

.hss-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--hss-shell);
    margin-bottom: 0.75rem;
}

.hss-hero {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, var(--hss-hero-1) 0%, var(--hss-hero-2) 55%, var(--hss-hero-3) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hss-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, var(--hss-glow-strong), transparent 55%), radial-gradient(circle at 80% 0%, var(--hss-glow-soft), transparent 45%);
    pointer-events: none;
}
.btn-success {
    background-color: var(--hss-shell);
    border-color: var(--hss-shell);
    border-width: 3px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    box-shadow: 0 8px 20px rgba(124, 214, 64, 0.4), 0 4px 8px rgba(124, 214, 64, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-success:hover::before {
    left: 100%;
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--hss-shell-dark);
    border-color: var(--hss-shell-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124, 214, 64, 0.5), 0 6px 12px rgba(124, 214, 64, 0.4);
}

.btn-success:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(124, 214, 64, 0.4);
}

.btn-success.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-width: 2px;
    box-shadow: 0 6px 16px rgba(124, 214, 64, 0.35), 0 3px 6px rgba(124, 214, 64, 0.25);
}

.btn-success.btn-sm:hover,
.btn-success.btn-sm:focus {
    box-shadow: 0 8px 20px rgba(124, 214, 64, 0.45), 0 4px 8px rgba(124, 214, 64, 0.35);
}


.hss-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.hss-hero-left h1 {
    font-family: var(--hss-font-heading);
    font-size: clamp(2.2rem, 3.2vw, 3.6rem);
    margin-bottom: 1rem;
    color: #f8fff0;
    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
}

.hss-hero p,
.hss-hero li {
    color: rgba(255, 255, 255, 0.85);
}

.hss-hero .hss-eyebrow {
    color: #d5ffb3;
}

.hss-promo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

.hss-promo-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
}

.hss-promo-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
}

.hss-sizzle-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hss-sizzle-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.hss-sizzle-list li::before {
    content: "•";
    color: var(--hss-shell);
    position: absolute;
    left: 0;
}

.hss-hero-right {
    display: flex;
    align-items: center;
}

.hss-hero-art {
    position: relative;
    width: 100%;
    border-radius: 1.75rem;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(124, 214, 64, 0.3), transparent 55%), rgba(2, 18, 20, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    padding: 1rem;
}

.hss-hero-art img {
    width: 100%;
    border-radius: 1.25rem;
    mix-blend-mode: lighten;
    opacity: 0.9;
}

.hss-hero-cta {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    background: rgba(5, 37, 41, 0.75);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(5px);
}

.hss-onboarding-card {
    background: rgba(2, 18, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    width: 100%;
}

.hss-form-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin: 1rem 0 0.75rem;
}

.hss-form-progress-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--hss-shell), #9bf86d);
    transition: width 0.3s ease;
}

.hss-form-progress-bar--step-1 {
    width: 33%;
}

.hss-form-progress-bar--step-2 {
    width: 66%;
}

.hss-form-progress-bar--step-3 {
    width: 100%;
}

.hss-form-step {
    display: none;
}

.hss-form-step.is-active {
    display: block;
}

.hss-step-label {
    font-weight: 600;
    color: var(--hss-shell);
    margin-bottom: 1rem;
}

.hss-onboarding-card .form-label,
.hss-onboarding-card .hss-step-label,
.hss-onboarding-card p {
    color: rgba(255, 255, 255, 0.8);
}

.hss-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hss-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.2s ease;
}

.hss-chip input {
    display: none;
}

.hss-chip span {
    transition: color 0.2s ease;
}

.hss-chip:hover:not(.is-selected) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hss-chip.is-selected {
    background: #fff;
    border-color: #fff;
}

.hss-chip.is-selected span {
    color: var(--hss-deep);
}

.hss-field {
    margin-bottom: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#project-outcome-field {
    opacity: 0;
    transform: translateY(-10px);
}

#project-outcome-field.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#step1-continue {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

#step1-continue.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hss-onboarding-form .form-control,
.hss-onboarding-form .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 0.75rem;
}

.hss-onboarding-form .form-control:focus,
.hss-onboarding-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--hss-shell);
    color: #fff;
    box-shadow: none;
}

.hss-onboarding-form textarea {
    resize: vertical;
}

.hss-step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.hss-choice-panel {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hss-choice-panel.is-focused {
    background: rgba(5, 37, 41, 0.92);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(5, 37, 41, 0.45);
}

.hss-choice-panel-intro {
    margin: 1.5rem 0;
}

.hss-choice-panel-intro p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hss-choice-panel-intro p:last-child {
    margin-bottom: 0;
}

.hss-choice-panel-body {
    margin-top: 1.5rem;
}

.hss-choice-panel-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.75rem 0 0;
}

.hss-choice-panel-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hss-process {
    background: #fff;
}

.hss-process-card {
    border-radius: 1rem;
    padding: 2rem;
    background: #0f2f33;
    color: rgba(255, 255, 255, 0.9);
    height: 100%;
    border: 1px solid rgba(5, 37, 41, 0.08);
}

.hss-process-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hss-process-card p {
    color: rgba(255, 255, 255, 0.85);
}

.hss-proof {
    background: var(--hss-sand);
    padding: 4rem 0;
}

.hss-proof-media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 30px 70px rgba(5, 37, 41, 0.25);
    margin-bottom: 2rem;
}

.hss-proof-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95);
}

.hss-proof-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(2, 18, 20, 0.1) 0%, rgba(2, 18, 20, 0.5) 50%, rgba(2, 18, 20, 0.75) 80%);
    color: #fff;
}

.hss-proof-content {
    padding: 0;
}

.hss-case-tag {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hss-shell);
    background: rgba(0, 0, 0, 0.85);
    padding: 0.4rem 0.85rem;
    border-radius: 0.5rem;
    display: inline-block;
    align-self: flex-start;
    width: auto;
}

.hss-case-quote {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 1.5rem;
    color: var(--hss-ink);
    line-height: 1.8;
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid var(--hss-shell);
}

.hss-case-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--hss-shell);
    opacity: 0.3;
    line-height: 1;
}

.hss-case-quote p {
    margin: 0;
}

.hss-case-author {
    font-size: 0.9rem;
    color: var(--hss-ink);
    opacity: 0.7;
    margin: 0;
    font-weight: 500;
    font-style: normal;
}

.hss-proof-stats {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 1rem 1.25rem;
    margin: 0;
    color: #fff;
    background: rgba(2, 18, 20, 0.6);
    border-radius: 0.75rem;
    justify-content: space-between;
}

.hss-proof-stats li {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.hss-proof-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hss-shell);
}

.hss-proof-unit {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hss-proof-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-top: 0.25rem;
}

.hss-highlight-list h4 {
    color: var(--hss-ink);
}

.hss-highlight-list > div {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--hss-sand);
    box-shadow: 0 15px 35px rgba(5, 37, 41, 0.05);
}

.hss-inhouse {
    background: rgba(2, 13, 22, 0.95);
    padding: 4rem 0;
    color: #fff;
}

.hss-inhouse h2 {
    color: rgba(255, 255, 255, 0.95);
}

.hss-inhouse .lead {
    color: rgba(255, 255, 255, 0.75);
}

.hss-inhouse .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hss-inhouse-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.hss-inhouse-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hss-inhouse {
    background: rgba(2, 13, 22, 0.9);
    padding: 4rem 0;
    color: #fff;
}

.hss-inhouse .hss-eyebrow {
    color: var(--hss-shell);
}

.hss-inhouse-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hss-inhouse-list li {
    margin-bottom: 0.3rem;
    padding-left: 1.25rem;
    position: relative;
}

.hss-inhouse-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--hss-shell);
}

.hss-inhouse-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hss-inhouse-card h3 {
    margin-bottom: 0.25rem;
    color: #fff;
}

.hss-inhouse-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.hss-inhouse-card li::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--hss-success);
}

.hss-inhouse-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.hss-section {
    padding: 4rem 0;
}

.hss-alt-bg {
    background: #fff;
}

/* Pricing section */
.hss-pricing {
    background: var(--hss-cloud);
    padding: 5rem 0;
}

.hss-pricing-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(5, 37, 41, 0.1);
    border: 1px solid var(--hss-sand);
}

.hss-pricing-content {
    margin-top: 2rem;
}

.hss-pricing-main {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid var(--hss-sand);
    margin-bottom: 2rem;
}

.hss-pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hss-pricing-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--hss-shell);
    font-family: var(--hss-font-heading);
    line-height: 1;
}

.hss-pricing-unit {
    font-size: 1.5rem;
    color: var(--hss-ink);
    opacity: 0.7;
    font-weight: 500;
}

.hss-pricing-note {
    font-size: 0.85rem;
    color: var(--hss-ink);
    opacity: 0.6;
    font-style: italic;
    font-weight: 400;
    margin-left: 0.5rem;
}

.hss-pricing-desc {
    font-size: 1.25rem;
    color: var(--hss-ink);
    font-weight: 500;
    margin: 0;
}

.hss-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.hss-pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--hss-ink);
}

.hss-pricing-list li i {
    color: var(--hss-shell);
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hss-hero-grid {
        grid-template-columns: 1fr;
    }

    .hss-proof-media {
        min-height: 320px;
    }

    .hss-proof-overlay {
        padding: 2rem;
    }

    .hss-promo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hss-onboarding-card {
        padding: 1.5rem;
    }

    .hss-form-progress {
        margin-top: 1.5rem;
    }

    .hss-hero-art img {
        mix-blend-mode: normal;
    }

    .hss-hero-cta {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .hss-choice-panel {
        margin-top: 1.5rem;
    }
}

/* Onboarding page */
.hss-onboarding-wrap {
    background: linear-gradient(135deg, rgba(2, 18, 20, 0.95) 0%, rgba(5, 37, 41, 0.9) 60%, rgba(8, 55, 62, 0.8) 100%);
    padding: 4rem 0;
}

.hss-onboarding-shell {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 2rem;
}

.hss-onboarding-card--wide {
    min-height: 100%;
}

.hss-choice-heading {
    color: #fff;
    font-size: 1.5rem;
}

.hss-choice-panel-list li {
    color: rgba(255, 255, 255, 0.85);
}

.hss-choice-panel-foot {
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .hss-onboarding-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .footer-top .row,
    .footer-bottom .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-top .col-sm-6,
    .footer-top .col-lg-3,
    .footer-bottom .col-md-6 {
        max-width: 100%;
        width: 100%;
    }

    .footer-top .footer-links,
    .footer-bottom .nav {
        justify-content: center;
    }
}

/* Footer alignment tweaks */
.footer {
    text-align: center;
}

.footer .footer-top .row {
    justify-content: center;
}

.footer .footer-top .col-sm-6,
.footer .footer-top .col-lg-3 {
    text-align: center;
}

.footer .footer-top .col-sm-6.col-lg-3:first-child img {
    display: block;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: none;
}

.footer .footer-top .footer-logo {
    width: 100%;
    display: block;
}

.footer .footer-top .footer-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer .footer-bottom .row {
    justify-content: center;
    align-items: center;
}

.footer .footer-bottom .nav,
.footer .footer-bottom .nav div {
    justify-content: center;
}

.hss-banner--projects {
    background: linear-gradient(135deg, rgba(3,18,26,0.9) 40%, rgba(3,18,26,0.2)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hss-banner--projects .row {
    padding: 2rem 3rem;
    background: rgba(3, 12, 20, 0.65);
    border-radius: 2rem;
}

.hss-banner--projects h1,
.hss-banner--projects .lead {
    color: #fff;
}

.hss-banner--projects .hss-eyebrow {
    color: var(--hss-shell);
}

.hss-banner--projects .lead {
    color: rgba(255, 255, 255, 0.9);
}

.hss-banner--projects .lead {
    max-width: 480px;
    color: #fff;
}

.hss-project-card {
    background: rgba(2, 15, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hss-project-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(1.1);
}

.hss-project-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hss-project-meta {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.hss-project-card h3 {
    margin-bottom: 0.75rem;
    color: #fff;
}

.hss-project-card p {
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
}

.hss-project-description {
    margin-bottom: 0.75rem;
}

.hss-project-details p {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hss-project-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.hss-project-list li {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hss-project-list li:last-child {
    border-bottom: none;
}

/* Case study section */
.hss-case-study {
    background: #03131a;
    color: rgba(255, 255, 255, 0.9);
}

.hss-case-study .section-heading h2 {
    color: #fff;
}

.hss-case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.hss-case-study-media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #03131a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hss-case-study-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0 1rem;
}

.hss-case-study-callout {
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(4, 13, 22, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.hss-case-study-callout h3 {
    margin-bottom: 0.25rem;
}

.hss-case-study-callout,
.hss-case-study-callout h3,
.hss-case-study-callout p,
.hss-case-study-callout .text-muted {
    color: #fff;
}

.hss-case-study-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.hss-case-study-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hss-case-study-list li {
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.hss-case-study-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hss-shell);
}

.hss-case-study-impact {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    line-height: 1.6;
}

.hss-case-study-impact p {
    margin: 0 0 0.5rem;
}

.hss-case-study-impact p:last-child {
    margin-bottom: 0;
}

.hss-case-study {
    background: #03131a;
    color: rgba(255, 255, 255, 0.9);
}

.hss-case-study + .hss-case-study {
    margin-top: 3rem;
}

.hss-case-study.light,
.hss-case-study-light {
    background: #f6f8fb;
    color: #0f172a;
}

.hss-case-study-light .hss-case-study-copy .lead,
.hss-case-study-light .hss-case-study-list li,
.hss-case-study-light .hss-case-study-impact p {
    color: #0f172a;
}

.hss-case-study-light .hss-case-study-callout {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.15);
}

.hss-case-study-light .hss-case-study-callout,
.hss-case-study-light .hss-case-study-callout h3,
.hss-case-study-light .hss-case-study-callout p,
.hss-case-study-light .hss-case-study-callout .text-muted {
    color: #0f172a;
}

.hss-case-study-light .hss-case-study-impact {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

.hss-case-study-grid.reverse {
    direction: rtl;
}

.hss-case-study-grid.reverse .hss-case-study-media,
.hss-case-study-grid.reverse .hss-case-study-copy {
    direction: ltr;
}

@media (max-width: 991px) {
    .hss-case-study-grid {
        grid-template-columns: 1fr;
    }

    .hss-case-study-media {
        order: 2;
    }

    .hss-case-study-copy {
        order: 1;
    }
}


/* Thank you page */
.hss-thank-you {
    background: linear-gradient(135deg, var(--hss-hero-1) 0%, var(--hss-hero-2) 55%, var(--hss-hero-3) 100%);
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hss-thank-you::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, var(--hss-glow-strong), transparent 55%), radial-gradient(circle at 80% 0%, var(--hss-glow-soft), transparent 45%);
    pointer-events: none;
}

.hss-thank-you-content {
    position: relative;
    z-index: 2;
}

.hss-free-day-offer .alert {
    background: rgba(124, 214, 64, 0.15);
    border: 2px solid var(--hss-shell);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}

.hss-free-day-offer .alert-heading {
    color: var(--hss-shell);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hss-free-day-offer .alert p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Summary section styles */
.hss-summary-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hss-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hss-summary-header h4 {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
}

.hss-edit-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hss-edit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hss-shell);
    color: var(--hss-shell);
}

.hss-summary-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hss-summary-content p:last-child {
    margin-bottom: 0;
}

.hss-summary-content span[data-display] {
    font-weight: 500;
    color: #fff;
}

.hss-edit-form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


