/* Social growth page — public/css/social-growth.css */
* { scroll-behavior: smooth; }
body { font-family: "Inter", sans-serif; background: #FAFAFA; color: #111827; }
h1, h2, h3, h4 { font-family: "Space Grotesk", sans-serif; }
.header-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.mobile-menu { transform: translateX(100%); transition: transform 300ms ease-out; }
.mobile-menu.open { transform: translateX(0); }
.growth-card { transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.growth-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }

.sms-hero-frame {
    position: relative;
    isolation: isolate;
}
.sms-hero-copy {
    position: relative;
    z-index: 2;
}
.sms-hero-angle {
    position: relative;
    z-index: 1;
}
.sms-hero-angle-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sms-hero-angle-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.sms-hero-angle-mobile {
    position: relative;
    width: 100%;
    min-height: min(58vw, 320px);
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, #eff6ff 0%, #e2e8f0 100%);
}
@media (max-width: 1023px) {
    .sms-hero-frame {
        display: flex;
        flex-direction: column;
    }
    .sms-hero-mobile-wrap {
        order: -1;
        margin-top: 0;
    }
    .sms-hero-copy {
        order: 0;
    }
    .sms-hero-angle-mobile .sms-hero-angle-inner img {
        object-position: center;
    }
    .sms-hero-angle-mobile {
        z-index: 1;
        clip-path: none;
    }
}
@media (min-width: 640px) {
    .sms-hero-angle-mobile {
        min-height: min(50vw, 360px);
    }
}
@media (min-width: 1024px) {
    .sms-hero-frame {
        min-height: 520px;
        display: flex;
        align-items: stretch;
    }
    .sms-hero-copy {
        flex: 0 0 40%;
        max-width: 26rem;
        min-height: 520px;
        box-sizing: border-box;
        background: #fff;
        padding: 2.75rem 1.25rem 2.75rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sms-hero-angle {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 38%;
        z-index: 1;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #e2e8f0 100%);
    }
    .sms-hero-angle-inner img {
        object-position: center;
    }
}

.growth-stat-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    background: #fff;
}
.growth-stat-chip__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.growth-how-layout {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .growth-how-layout {
        grid-template-columns: min(20rem, 34%) 1fr;
        gap: 3rem 4.5rem;
        align-items: start;
    }
}
.growth-how-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 40rem;
}
@media (min-width: 1024px) {
    .growth-how-timeline {
        max-width: none;
        margin-left: auto;
        width: 100%;
    }
}
.growth-how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.35rem;
}
.growth-how-step:not(:last-child) {
    padding-bottom: 2.25rem;
}
@media (min-width: 640px) {
    .growth-how-step:not(:last-child) {
        padding-bottom: 2.75rem;
    }
}
.growth-how-step__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}
.growth-how-step__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.growth-how-step__icon i {
    font-size: 1.125rem;
    line-height: 1;
}
.growth-how-step__line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, #dbeafe 0%, #e5e7eb 100%);
    margin-top: 0.65rem;
    min-height: 1.75rem;
    border-radius: 9999px;
}
.growth-how-step__body {
    padding-top: 0.15rem;
    padding-bottom: 0.25rem;
}
.growth-how-step__num {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2563eb;
    margin-bottom: 0.4rem;
}
.growth-how-step__title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.growth-how-step__text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #6b7280;
    margin-bottom: 0;
}
.growth-how-step__note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #6b7280;
}
.growth-how-step__note i {
    color: #2563eb;
    font-size: 0.75rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.growth-how-notes {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.growth-how-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #6b7280;
}
.growth-how-notes li i {
    color: #2563eb;
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}
.growth-how-callout {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid #fde68a;
    background: #fffbeb;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #374151;
}
.growth-how-callout__title {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
}
.growth-how-callout__path {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.65rem;
    margin-bottom: 0;
    color: #4b5563;
}
.growth-how-callout__path i {
    color: #92400e;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.growth-audience-card,
.growth-benefit-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 1.25rem;
    padding: 1.5rem;
    height: 100%;
}
.growth-audience-card__icon,
.growth-benefit-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.growth-section-intro {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
    .growth-section-intro {
        grid-template-columns: 1fr min(22rem, 34%);
        align-items: start;
    }
}

.growth-platforms-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 0.5rem;
    width: 100%;
}
@media (min-width: 640px) {
    .growth-platforms-grid {
        gap: 2.75rem;
    }
}
@media (min-width: 1024px) {
    .growth-platforms-grid {
        gap: 3.25rem;
    }
}
.growth-platforms-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    width: 100%;
    max-width: 30rem;
    justify-items: center;
    align-items: center;
}
@media (min-width: 640px) {
    .growth-platforms-row {
        max-width: 40rem;
        gap: 1.75rem 2.75rem;
    }
}
@media (min-width: 1024px) {
    .growth-platforms-row {
        max-width: 56rem;
        gap: 2rem 4.5rem;
    }
}
@media (min-width: 1280px) {
    .growth-platforms-row {
        max-width: 68rem;
        gap: 2.25rem 5.5rem;
    }
}
.growth-platforms-row img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    display: block;
}
@media (min-width: 640px) {
    .growth-platforms-row img {
        width: 2.125rem;
        height: 2.125rem;
    }
}
@media (min-width: 1024px) {
    .growth-platforms-row img {
        width: 2.375rem;
        height: 2.375rem;
    }
}
.growth-platforms-row--more {
    grid-template-columns: 1fr;
    max-width: none;
    min-height: 2.125rem;
}
.growth-platforms-more {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #9ca3af;
}
.growth-platforms-services {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2.25rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}
.growth-platforms-services__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
}
.growth-platforms-services__item i {
    font-size: 0.875rem;
    color: #2563eb;
}
.growth-service-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
