/* ==========================================================================
   HASHI TECH — INNER PAGES STYLESHEET
   Solution detail, industry, about, and contact page layouts.
   Loaded alongside style.css (tokens + base + theme + components).
   ========================================================================== */

/* ── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
    padding: clamp(104px, 12vw, 140px) max(var(--section-gutter), calc((100% - var(--content-max)) / 2)) 72px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, color-mix(in srgb, var(--red) 8%, transparent) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, color-mix(in srgb, var(--red) 5%, transparent) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--content-max);
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 500 12px/1 var(--display);
    color: var(--muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb .sep {
    color: var(--line);
    font-size: 10px;
}

.breadcrumb .current {
    color: var(--ink);
    font-weight: 600;
}

.page-hero .section-kicker {
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    max-width: 800px;
    margin-bottom: 20px;
}

.page-hero-lede {
    max-width: 600px;
    color: var(--muted);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.65;
    margin: 0 0 32px;
}

.page-hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.page-hero-trust {
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted);
    opacity: 0.8;
}

/* ── Page Section Utility ───────────────────────────────────────────────── */
.page-section {
    padding: clamp(56px, 7vw, 80px) max(var(--section-gutter), calc((100% - var(--content-max)) / 2));
}

.page-section.bordered {
    border-bottom: 1px solid var(--line);
}

.page-section-header {
    margin-bottom: 48px;
}

.page-section-header h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    margin-bottom: 14px;
}

.page-section-header p {
    color: var(--muted);
    max-width: 560px;
    line-height: 1.65;
}

.page-section-header.centered {
    text-align: center;
}

.page-section-header.centered p {
    margin-inline: auto;
}

/* ── Challenge / Pain-Point Section ─────────────────────────────────────── */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.challenge-card {
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.challenge-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--red) 30%, var(--line));
    box-shadow: var(--shadow-card-hover);
}

.challenge-card .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.challenge-card h3 {
    font: 700 16px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Capabilities Grid ──────────────────────────────────────────────────── */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.cap-card {
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.cap-card:hover {
    background: var(--card);
    border-color: color-mix(in srgb, var(--red) 35%, var(--line));
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.cap-card .card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
}

.cap-card:hover .card-icon {
    background: color-mix(in srgb, var(--red) 15%, transparent);
}

.cap-card h3 {
    font: 700 17px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.cap-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ── How-It-Works Strip ─────────────────────────────────────────────────── */
.steps-section {
    background: var(--surface-brand);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    counter-reset: step;
}

.step-item {
    text-align: center;
    padding: 48px 28px;
    position: relative;
    counter-increment: step;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: var(--line);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--red) 10%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--red) 30%, transparent);
    color: var(--red);
    font: 700 14px/1 var(--display);
    margin-bottom: 18px;
}

.step-item h3 {
    font: 700 16px/1.3 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 260px;
    margin: 0 auto;
}

/* ── Use Cases Section ──────────────────────────────────────────────────── */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.use-case-item:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--red) 25%, var(--line));
}

.use-case-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--red) 9%, transparent);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.use-case-item h3 {
    font: 600 15px/1.3 var(--display);
    color: var(--ink);
    margin-bottom: 4px;
}

.use-case-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Benefits Grid ──────────────────────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-item {
    min-width: 0;
    min-height: 132px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: var(--surface-subtle);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.benefit-item:hover {
    background: var(--card);
    border-color: color-mix(in srgb, var(--red) 35%, var(--line));
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--red) 9%, transparent);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
}

.benefit-item h3 {
    font: 600 14px/1.3 var(--display);
    color: var(--ink);
    margin: 0 0 3px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ── FAQ Section ────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item summary {
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font: 600 15px/1.45 var(--display);
    color: var(--ink);
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--red);
}

.faq-chevron {
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--red);
    font-size: 16px;
    transition: transform var(--transition-bounce), background var(--transition-fast);
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
    background: color-mix(in srgb, var(--red) 10%, transparent);
}

.faq-item .faq-answer {
    padding: 0 0 22px 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 680px;
    animation: faq-in 0.3s ease both;
}

@keyframes faq-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Page CTA Band ──────────────────────────────────────────────────────── */
.page-cta {
    padding: 80px max(var(--section-gutter), calc((100% - var(--content-max)) / 2));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--red) 12%, transparent) 0%, transparent 65%);
    pointer-events: none;
}

.page-cta-inner {
    position: relative;
    z-index: 2;
}

.page-cta h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px;
}

.page-cta p {
    color: var(--muted);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.page-cta .cta-trust {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    opacity: 0.8;
}

/* ── Related Solutions ──────────────────────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.related-card {
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.related-card:hover {
    background: var(--card);
    border-color: color-mix(in srgb, var(--red) 35%, var(--line));
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.related-card .card-icon {
    margin-bottom: 16px;
}

.related-card:hover .card-icon {
    background: color-mix(in srgb, var(--red) 15%, transparent);
}

.related-card h3 {
    font: 700 16px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 auto;
}

.related-card .card-link {
    color: var(--red);
    font: 600 12px/1 var(--display);
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Industry Page ──────────────────────────────────────────────────────── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.industry-card {
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.industry-card:hover {
    background: var(--card);
    border-color: color-mix(in srgb, var(--red) 35%, var(--line));
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.industry-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--red) 9%, transparent);
    color: var(--red);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.industry-card h3 {
    font: 700 18px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.industry-card>p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.industry-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: color-mix(in srgb, var(--red) 7%, transparent);
    border: 1px solid color-mix(in srgb, var(--red) 18%, transparent);
    color: var(--red);
    font: 600 10px/1.2 var(--display);
    letter-spacing: 0.02em;
}

.industry-cta-row {
    margin-top: 48px;
    padding: 28px 36px;
    background: color-mix(in srgb, var(--red) 6%, var(--card));
    border: 1px solid color-mix(in srgb, var(--red) 20%, var(--line));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.industry-cta-row p {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}

/* ── About Page ─────────────────────────────────────────────────────────── */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-story-visual {
    background: var(--surface-brand);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.about-stat strong {
    font: 800 36px/1 var(--display);
    color: var(--red);
}

.about-stat span {
    font-size: 14px;
    color: var(--muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.value-card {
    background: var(--surface-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--red) 30%, var(--line));
    box-shadow: var(--shadow-card-hover);
}

.value-card .card-icon {
    margin-bottom: 18px;
}

.value-card h3 {
    font: 700 16px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.approach-card {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--line);
    background: var(--surface-subtle);
}

.approach-card:last-child {
    border-right: 0;
}

.approach-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--red) 10%, transparent);
    color: var(--red);
    font: 700 13px/1 var(--display);
    margin-bottom: 18px;
}

.approach-card h3 {
    font: 700 16px/1.25 var(--display);
    color: var(--ink);
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Contact Page ───────────────────────────────────────────────────────── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--red) 9%, transparent);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font: 600 14px/1.3 var(--display);
    color: var(--ink);
    margin: 0 0 3px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.contact-info-item a {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.contact-info-item a:hover {
    opacity: 0.8;
}

.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-floating);
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading .section-kicker {
    margin-bottom: 10px;
}

.contact-form-heading h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.contact-form-heading p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrap label {
    display: block;
    color: var(--ink);
    font: 600 12px/1.3 var(--display);
    margin: 0 0 8px;
}

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

.contact-form-wrap #contact-form input,
.contact-form-wrap #contact-form textarea,
.contact-form-wrap #contact-form select {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-subtle);
    color: var(--ink);
    outline: 0;
    resize: vertical;
    font: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-form-wrap #contact-form textarea {
    min-height: 132px;
}

.contact-form-wrap #contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23687078' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 38px;
}

.contact-form-wrap #contact-form input:focus,
.contact-form-wrap #contact-form textarea:focus,
.contact-form-wrap #contact-form select:focus {
    border-color: var(--red);
    background: var(--card);
    box-shadow: var(--shadow-focus);
}

.contact-form-wrap .field:focus-within input,
.contact-form-wrap .field:focus-within textarea,
.contact-form-wrap .field:focus-within select {
    border-bottom: 2px solid var(--red) !important;
    box-shadow: 0 4px 0 -3px color-mix(in srgb, var(--red) 25%, transparent);
}

.contact-form-wrap .button {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.contact-form-wrap .form-status {
    margin-bottom: 0;
    text-align: center;
}

.page-cta .cta-trust {
    display: block;
}

/* ── Stat Strip (reusable) ──────────────────────────────────────────────── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 36px max(var(--section-gutter), calc((100% - var(--content-max)) / 2));
    border-bottom: 1px solid var(--line);
}

.stat-strip-item {
    padding: 0 28px;
    border-right: 1px solid var(--line);
}

.stat-strip-item:first-child {
    padding-left: 0;
}

.stat-strip-item:last-child {
    border-right: 0;
}

.stat-strip-item strong {
    display: block;
    color: var(--red);
    font: 700 20px/1.2 var(--display);
}

.stat-strip-item span {
    font-size: 12px;
    color: var(--muted);
}

/* ── Responsive — Inner Pages ───────────────────────────────────────────── */
@media (max-width: 1024px) {

    .challenge-grid,
    .related-grid,
    .industry-grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid {
        gap: 40px;
    }
}

@media (max-width: 850px) {
    .page-hero {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .page-hero,
    .page-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 48px;
        height: 1px;
    }

    .step-item {
        padding: 32px 20px;
        border-bottom: 1px solid var(--line);
    }

    .step-item:last-child {
        border-bottom: 0;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .approach-card:last-child {
        border-bottom: 0;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-strip-item:nth-child(2) {
        border-right: 0;
    }

    .stat-strip-item:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 520px) {
    .page-hero {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .page-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .challenge-grid,
    .related-grid,
    .industry-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }

    .stat-strip-item {
        padding: 0 !important;
        border-right: 0;
    }

    .industry-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero-actions .button {
        justify-content: center;
        width: 100%;
    }

    .page-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .steps-section {
        padding: 0;
    }
}
