.sd-home {
    margin: 0;
    color: #16202a;
    background: #f8fbff;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.sd-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 7vw;
    border: 0;
    border-bottom: 1px solid rgba(210, 225, 242, .9);
    border-radius: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 30px rgba(31, 41, 55, .10);
}

.sd-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.sd-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .04em;
    background: linear-gradient(135deg, #8bd1ff, #5fb1e7);
    box-shadow: 0 12px 24px rgba(95, 177, 231, .34);
}

.sd-brand:hover,
.sd-nav-links a:hover,
.sd-footer a:hover {
    color: #0b76ef;
    text-decoration: none;
}

.sd-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1;
}

.sd-nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    color: #273449;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sd-nav-links a:hover {
    background: #eef7ff;
    transform: translateY(-1px);
}

.sd-nav-demo {
    color: #70b7dd !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sd-nav-demo i {
    margin-right: 7px;
    font-size: 10px;
}

.sd-nav-login {
    border: 1px solid #d9e2ed;
    background: #fff;
    color: #111827 !important;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .08);
    text-transform: uppercase;
}

.sd-nav-cta {
    color: #fff !important;
    background: #111318;
    box-shadow: 0 13px 24px rgba(17, 19, 24, .22);
    text-transform: uppercase;
}

.sd-nav-cta:after {
    content: "+";
    margin-left: 5px;
    font-size: 13px;
    line-height: 1;
}

.sd-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 142px 7vw 80px;
    overflow: hidden;
    background: #0a121c;
}

.sd-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08) brightness(.98);
    animation: sdSlowZoom 18s ease-in-out infinite alternate;
}

.sd-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .12) 1px, transparent 0),
        linear-gradient(90deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,.20) 48%, rgba(255,255,255,.10) 100%);
    background-size: 24px 24px, auto;
}

.sd-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 28%, rgba(139, 209, 255, .12), transparent 26%),
        radial-gradient(circle at 82% 58%, rgba(168, 85, 247, .08), transparent 28%);
    pointer-events: none;
}

.sd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0;
    color: #16202a;
    animation: sdFadeUp .8s ease both;
}

.sd-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #0b76ef;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-hero h1,
.sd-section h2,
.sd-cta h2 {
    margin: 0;
    font-weight: 850;
    line-height: 1.07;
}

.sd-hero h1 {
    max-width: 830px;
    color: #111827;
    font-size: 60px;
}

.sd-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #5f6f84;
    font-size: 18px;
    line-height: 1.7;
}

.sd-hero-actions {
    position: absolute;
    z-index: 3;
    left: 7vw;
    bottom: 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
}

.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 150px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sd-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.sd-btn-primary {
    color: #fff;
    background: #111318;
    box-shadow: 0 14px 30px rgba(17, 19, 24, .24);
}

.sd-btn-primary:hover {
    color: #fff;
}

.sd-btn-light {
    color: #122033;
    background: #fff;
    border: 1px solid #d9e2ed;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
}

.sd-social-rail {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 18;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
}

.sd-social-rail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(219, 228, 239, .92);
    border-radius: 8px;
    color: #172033;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    text-decoration: none;
    transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.sd-social-rail a:hover {
    color: #0b76ef;
    transform: translateX(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, .16);
}

.sd-hero-panel {
    position: relative;
    z-index: 2;
    padding: 22px;
    border: 1px solid rgba(207, 224, 245, .94);
    border-radius: 8px;
    background: rgba(255, 255, 255, .74);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 54px rgba(31, 41, 55, .12);
}

.sd-hero-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4edf6;
}

.sd-hero-panel-top span {
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.sd-hero-panel-top strong {
    color: #0b76ef;
    font-size: 13px;
}

.sd-hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.sd-hero-metric-grid div {
    min-height: 104px;
    padding: 16px;
    border: 1px solid #dce9f5;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.sd-hero-metric-grid strong,
.sd-hero-metric-grid span {
    display: block;
}

.sd-hero-metric-grid strong {
    color: #111827;
    font-size: 28px;
}

.sd-hero-metric-grid span {
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.sd-mini-tools {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 34px 7vw 42px;
    border-top: 1px solid #e7eff7;
    border-bottom: 1px solid #e7eff7;
    background:
        radial-gradient(circle at 1px 1px, rgba(98, 120, 145, .18) 1px, transparent 0),
        #fff;
    background-size: 22px 22px, auto;
}

.sd-mini-tools article {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(221, 232, 244, .86);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
}

.sd-mini-tools span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #9ad8ff, #6abbe8);
    box-shadow: 0 14px 24px rgba(90, 183, 230, .22);
}

.sd-mini-tools article:nth-child(2) span {
    background: linear-gradient(135deg, #d98cff, #a855f7);
}

.sd-mini-tools article:nth-child(3) span {
    background: linear-gradient(135deg, #ffe382, #f4c430);
}

.sd-mini-tools article:nth-child(4) span {
    background: linear-gradient(135deg, #92e0d3, #42c7b5);
}

.sd-mini-tools article:nth-child(5) span {
    background: linear-gradient(135deg, #ff9aae, #e85d75);
}

.sd-mini-tools strong {
    color: #172033;
    font-size: 13px;
    line-height: 1.35;
}

.sd-mini-tools small {
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.sd-platform-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 24px 7vw;
    background: #f7fbff;
    box-shadow: 0 1px 0 rgba(17, 24, 39, .08);
}

.sd-platform-strip span {
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 8px 15px;
    background: #f8fbff;
    color: #31465f;
    font-size: 13px;
    font-weight: 800;
}

.sd-section {
    padding: 25px 7vw;
    background:
        radial-gradient(circle at 1px 1px, rgba(98, 120, 145, .10) 1px, transparent 0),
        #f8fbff;
    background-size: 24px 24px, auto;
}

.sd-section-soft {
    background:
        radial-gradient(circle at 1px 1px, rgba(98, 120, 145, .14) 1px, transparent 0),
        #eef7ff;
    background-size: 24px 24px, auto;
}

.sd-section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .08) 1px, transparent 0),
        #111827;
    background-size: 24px 24px, auto;
}

.sd-section-plans {
    background:
        radial-gradient(circle at 1px 1px, rgba(98, 120, 145, .12) 1px, transparent 0),
        linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
    background-size: 24px 24px, auto;
}

.sd-section-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.sd-section-head h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 0;
    padding: 0 30px;
    border: 1px solid #dbe9f6;
    border-radius: 8px;
    color: #111827;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
    font-size: 34px;
    font-weight: 850;
}

.sd-section-head h2:before,
.sd-section-head h2:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 58px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #80c8f1);
}

.sd-section-head h2:before {
    right: 100%;
    transform: translateY(-50%) rotate(180deg);
}

.sd-section-head h2:after {
    left: 100%;
    transform: translateY(-50%);
}

.sd-section-dark .sd-section-head h2 {
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.sd-section-head p,
.sd-split p,
.sd-cta p {
    color: #65758a;
    font-size: 16px;
    line-height: 1.7;
}

.sd-section-dark .sd-section-head p {
    color: rgba(255, 255, 255, .68);
}

.sd-section-plans .sd-plan-card {
    border-color: #dbe4ef;
    background: rgba(255, 255, 255, .92);
}

.sd-section-plans .sd-plan-card:nth-child(1) {
    border-color: rgba(73, 167, 255, .55);
    background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
}

.sd-section-plans .sd-plan-card:nth-child(2) {
    border-color: #2f9af5;
    background: #2f9af5;
}

.sd-section-plans .sd-plan-card:nth-child(3) {
    border-color: rgba(168, 85, 247, .56);
    background: linear-gradient(180deg, #ffffff 0%, #f4ebff 100%);
}

.sd-section-plans .sd-plan-card:nth-child(4) {
    border-color: rgba(20, 184, 166, .56);
    background: linear-gradient(180deg, #ffffff 0%, #e8fbf8 100%);
}

.sd-feature-grid,
.sd-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sd-feature-card,
.sd-plan-card {
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    padding: 26px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sd-feature-card:hover,
.sd-plan-card:hover {
    transform: translateY(-5px);
    border-color: #b9d8f2;
    box-shadow: 0 26px 54px rgba(17, 24, 39, .14);
}

.sd-feature-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, #0b76ef, #53c5f0);
    font-size: 19px;
}

.sd-feature-card:nth-child(2) i {
    background: linear-gradient(135deg, #d98cff, #a855f7);
}

.sd-feature-card:nth-child(3) i {
    background: linear-gradient(135deg, #ffe382, #f4c430);
}

.sd-feature-card:nth-child(4) i {
    background: linear-gradient(135deg, #92e0d3, #42c7b5);
}

.sd-feature-card:nth-child(5) i {
    background: linear-gradient(135deg, #ff9aae, #e85d75);
}

.sd-feature-card:nth-child(6) i {
    background: linear-gradient(135deg, #93c5fd, #2563eb);
}

.sd-feature-card:nth-child(7) i {
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.sd-feature-card:nth-child(8) i {
    background: linear-gradient(135deg, #86efac, #16a34a);
}

.sd-feature-card h3,
.sd-plan-card h3 {
    margin: 0 0 10px;
    color: #16202a;
    font-size: 18px;
    font-weight: 850;
}

.sd-feature-card p,
.sd-plan-card p,
.sd-plan-card li {
    color: #617086;
    font-size: 14px;
    line-height: 1.65;
}

.sd-workflow {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.sd-workflow div {
    position: relative;
    min-height: 142px;
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(221, 232, 244, .9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sd-workflow div:not(:last-child):after {
    content: "\f178";
    position: absolute;
    top: 50%;
    right: -24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #dbe9f6;
    border-radius: 999px;
    color: #0b76ef;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .10);
    font-family: FontAwesome;
    font-size: 13px;
    transform: translateY(-50%);
}

.sd-workflow div:hover {
    transform: translateY(-4px);
    border-color: #b9d8f2;
    box-shadow: 0 22px 44px rgba(15, 23, 42, .12);
}

.sd-workflow strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #9ad8ff, #6abbe8);
    box-shadow: 0 14px 24px rgba(90, 183, 230, .22);
    font-size: 17px;
    line-height: 1;
}

.sd-workflow strong i {
    font-size: 18px;
    line-height: 1;
}

.sd-workflow span {
    display: block;
    margin-top: 16px;
    color: #172033;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.sd-workflow div:nth-child(2) strong {
    background: linear-gradient(135deg, #d98cff, #a855f7);
}

.sd-workflow div:nth-child(3) strong {
    background: linear-gradient(135deg, #ffe382, #f4c430);
}

.sd-workflow div:nth-child(4) strong {
    background: linear-gradient(135deg, #92e0d3, #42c7b5);
}

.sd-workflow div:nth-child(5) strong {
    background: linear-gradient(135deg, #ff9aae, #e85d75);
}

.sd-workflow div:nth-child(6) strong {
    background: linear-gradient(135deg, #93c5fd, #2563eb);
}

.sd-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 34px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.sd-role-list {
    display: grid;
    gap: 12px;
}

.sd-role-list span {
    border-radius: 8px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #dbe4ef;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    font-weight: 850;
}

.sd-section-dark .sd-plan-card {
    border-color: rgba(255, 255, 255, .13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.sd-section-dark .sd-plan-card:nth-child(1) {
    border-color: rgba(73, 167, 255, .52);
    background:
        linear-gradient(180deg, rgba(73, 167, 255, .24), rgba(255, 255, 255, .06));
}

.sd-section-dark .sd-plan-card:nth-child(2) {
    border-color: rgba(251, 191, 36, .72);
    background:
        linear-gradient(180deg, rgba(251, 191, 36, .28), rgba(255, 255, 255, .07));
}

.sd-section-dark .sd-plan-card:nth-child(3) {
    border-color: rgba(168, 85, 247, .52);
    background:
        linear-gradient(180deg, rgba(168, 85, 247, .24), rgba(255, 255, 255, .06));
}

.sd-section-dark .sd-plan-card:nth-child(4) {
    border-color: rgba(20, 184, 166, .52);
    background:
        linear-gradient(180deg, rgba(20, 184, 166, .24), rgba(255, 255, 255, .06));
}

.sd-plan-recommended {
    position: relative;
    transform: translateY(-10px);
    overflow: hidden;
    box-shadow: 0 28px 58px rgba(47, 154, 245, .28), 0 18px 40px rgba(15, 23, 42, .14);
}

.sd-plan-recommended:before {
    content: "\f005";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0 8px 0 8px;
    color: #fff;
    background: #f4c430;
    font-family: FontAwesome;
    font-size: 16px;
}

.sd-section-dark .sd-plan-card h3,
.sd-section-dark .sd-plan-card p,
.sd-section-dark .sd-plan-card li {
    color: #fff;
}

.sd-section-plans .sd-plan-card h3 {
    color: #16202a;
}

.sd-section-plans .sd-plan-card p,
.sd-section-plans .sd-plan-card li {
    color: #617086;
}

.sd-section-plans .sd-plan-recommended h3,
.sd-section-plans .sd-plan-recommended p,
.sd-section-plans .sd-plan-recommended li {
    color: #fff;
}

.sd-section-plans .sd-plan-recommended .sd-btn {
    color: #2f75d6;
    background: #fff;
    box-shadow: 0 12px 22px rgba(15, 23, 42, .12);
}

.sd-plan-card ul {
    min-height: 136px;
    margin: 18px 0 0;
    padding-left: 18px;
}

.sd-plan-featured {
    background: #fff;
    border-color: #49a7ff;
}

.sd-plan-label {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #2f75d6;
    background: #fff;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.sd-section-plans {
    overflow: hidden;
    background:
        radial-gradient(circle at 1px 1px, rgba(148, 163, 184, .16) 1px, transparent 0),
        linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    background-size: 24px 24px, auto;
}

.sd-section-plans .sd-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.sd-section-plans .sd-plan-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    border-radius: 32px;
    padding: 26px 24px 24px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 28px 55px rgba(15, 23, 42, .16);
    transform: none;
}

.sd-section-plans .sd-plan-card:nth-child(1),
.sd-section-plans .sd-plan-card:nth-child(2),
.sd-section-plans .sd-plan-card:nth-child(3),
.sd-section-plans .sd-plan-card:nth-child(4) {
    border-color: transparent;
}

.sd-section-plans .sd-plan-card:hover {
    transform: translateY(-8px) rotate(-1.5deg);
    border-color: transparent;
    box-shadow: 0 34px 70px rgba(15, 23, 42, .22);
}

.sd-section-plans .sd-plan-tone-light {
    color: #334155;
    background: #fff;
}

.sd-section-plans .sd-plan-tone-blue {
    color: #0f2740;
    background: linear-gradient(165deg, #dff1ff 0%, #9fcef2 58%, #6fb1de 100%);
}

.sd-section-plans .sd-plan-tone-purple {
    color: #33162b;
    background: linear-gradient(165deg, #fff0f8 0%, #e4a7cc 60%, #c579a7 100%);
}

.sd-section-plans .sd-plan-card h3 {
    margin-bottom: 6px;
    color: inherit;
    font-size: 20px;
    font-weight: 900;
}

.sd-plan-price {
    position: relative;
    margin: 0 0 2px;
    padding-bottom: 12px;
    color: inherit;
    font-size: 42px;
    line-height: .95;
    font-weight: 950;
    letter-spacing: -1px;
}

.sd-plan-price span {
    margin-right: 5px;
    font-size: 16px;
    vertical-align: 15px;
}

.sd-plan-price:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 98px;
    height: 1px;
    transform: translateX(-50%);
    background: currentColor;
    opacity: .36;
}

.sd-plan-cycle {
    min-height: 20px;
    margin-bottom: 10px;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    opacity: .9;
}

.sd-plan-benefits {
    width: 100%;
    min-height: 118px;
    margin: 2px 0 10px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.sd-section-plans .sd-plan-card .sd-plan-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 9px 0;
    color: inherit;
    font-size: 12px;
    line-height: 1.35;
    opacity: .96;
}

.sd-plan-benefits i {
    flex: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background: #fb981b;
    font-size: 11px;
    box-shadow: 0 8px 16px rgba(251, 152, 27, .24);
}

.sd-plan-tone-blue .sd-plan-benefits i,
.sd-plan-tone-purple .sd-plan-benefits i {
    color: #fff;
    background: #2f75a7;
    box-shadow: 0 8px 16px rgba(15, 23, 42, .12);
}

.sd-plan-tone-purple .sd-plan-benefits i {
    background: #9f4f7d;
}

.sd-section-plans .sd-plan-tone-blue .sd-plan-benefits li,
.sd-section-plans .sd-plan-tone-purple .sd-plan-benefits li,
.sd-section-plans .sd-plan-tone-blue p,
.sd-section-plans .sd-plan-tone-purple p {
    color: inherit;
    opacity: .98;
    text-shadow: none;
}

.sd-section-plans .sd-plan-card .sd-muted-benefit {
    opacity: .38;
}

.sd-section-plans .sd-plan-card .sd-muted-benefit i {
    background: #cbd5e1;
    color: #fff;
    box-shadow: none;
}

.sd-section-plans .sd-plan-card p {
    min-height: 38px;
    margin: 0 0 14px;
    color: inherit;
    font-size: 11px;
    line-height: 1.45;
    opacity: .88;
}

.sd-plan-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    margin-top: auto;
    padding: 10px 20px;
    border-radius: 12px;
    color: #fb981b;
    background: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(15, 23, 42, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sd-plan-tone-light .sd-plan-select {
    color: #fff;
    background: #fb981b;
    box-shadow: 0 14px 24px rgba(251, 152, 27, .28);
}

.sd-plan-tone-blue .sd-plan-select {
    color: #fff;
    background: #2f75a7;
}

.sd-plan-tone-purple .sd-plan-select {
    color: #fff;
    background: #9f4f7d;
}

.sd-plan-select:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(15, 23, 42, .22);
}

.sd-section-plans .sd-plan-recommended {
    box-shadow: 0 30px 64px rgba(47, 117, 214, .28), 0 16px 34px rgba(15, 23, 42, .12);
}

.sd-section-plans .sd-plan-recommended:before {
    display: none;
}

.sd-section-plans .sd-plan-recommended .sd-plan-label {
    position: absolute;
    top: 18px;
    right: 22px;
    margin: 0;
    color: #fff;
    background: #2f75a7;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
}

.sd-cta {
    padding: 70px 7vw;
    text-align: center;
    background:
        radial-gradient(circle at 1px 1px, rgba(98, 120, 145, .12) 1px, transparent 0),
        #fff;
    background-size: 24px 24px, auto;
}

.sd-cta h2 {
    font-size: 34px;
}

.sd-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 7vw;
    color: rgba(255, 255, 255, .72);
    background: #0b121d;
}

.sd-footer a {
    margin-left: 18px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

@keyframes sdSlowZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.1);
    }
}

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

@media (max-width: 1100px) {
    .sd-nav {
        top: 0;
        width: 100%;
        padding: 10px 18px;
    }

    .sd-brand span:last-child {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sd-nav-links a {
        padding: 0 9px;
        font-size: 12px;
    }

    .sd-hero {
        padding-top: 126px;
    }

    .sd-hero-actions {
        left: 18px;
        bottom: 56px;
    }

    .sd-mini-tools {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sd-feature-grid,
    .sd-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-workflow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sd-workflow div:nth-child(3):after {
        display: none;
    }
}

@media (max-width: 760px) {
    .sd-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        align-items: flex-start;
        gap: 14px;
        flex-direction: column;
    }

    .sd-nav-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .sd-nav-links a {
        min-height: 36px;
        padding: 0 10px;
    }

    .sd-hero {
        min-height: auto;
        min-height: 620px;
        padding: 245px 22px 96px;
    }

    .sd-hero-actions {
        left: 22px;
        right: 22px;
        bottom: 42px;
        gap: 10px;
    }

    .sd-hero-actions .sd-btn {
        flex: 0 1 160px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .sd-social-rail {
        left: 12px;
        right: 12px;
        top: auto;
        bottom: 12px;
        flex-direction: row;
        justify-content: center;
        transform: none;
    }

    .sd-social-rail a {
        width: 36px;
        height: 36px;
    }

    .sd-section-head h2 {
        min-height: 50px;
        padding: 0 18px;
        font-size: 26px;
    }

    .sd-section-head h2:before,
    .sd-section-head h2:after {
        width: 26px;
    }

    .sd-hero h1 {
        font-size: 36px;
    }

    .sd-hero p {
        font-size: 15px;
    }

    .sd-hero-panel {
        padding: 16px;
    }

    .sd-hero-metric-grid,
    .sd-mini-tools {
        grid-template-columns: 1fr;
    }

    .sd-mini-tools {
        padding: 28px 22px;
    }

    .sd-feature-grid,
    .sd-plan-grid,
    .sd-workflow,
    .sd-split {
        grid-template-columns: 1fr;
    }

    .sd-section-plans .sd-plan-grid {
        gap: 24px;
    }

    .sd-section-plans .sd-plan-card,
    .sd-section-plans .sd-plan-tone-light,
    .sd-section-plans .sd-plan-tone-blue,
    .sd-section-plans .sd-plan-tone-purple,
    .sd-section-plans .sd-plan-recommended {
        min-height: auto;
        transform: none;
    }

    .sd-plan-price {
        font-size: 48px;
    }

    .sd-workflow div:not(:last-child):after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -24px;
        transform: translateX(-50%) rotate(90deg);
    }

    .sd-workflow div:nth-child(3):after {
        display: inline-flex;
    }

    .sd-section {
        padding: 58px 22px;
    }

    .sd-footer {
        flex-direction: column;
    }
}

/* Internal dashboard family */
.sd-app-dashboard {
    min-height: calc(100vh - 90px);
    padding: 18px;
    background: #f4f7fb;
    color: #334155;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.sd-app-hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.sd-app-hero h1 {
    margin: 0;
    color: #1e293b;
    font-size: 28px;
    font-weight: 650;
    line-height: 1.2;
}

.sd-app-hero p {
    max-width: 760px;
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.75;
}

.sd-app-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.sd-app-section {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #60a5fa;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .06);
}

.sd-app-section--green {
    border-left-color: #22c55e;
}

.sd-app-section--amber {
    border-left-color: #f59e0b;
}

.sd-app-section--purple {
    border-left-color: #8b5cf6;
}

.sd-app-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.sd-app-section-title {
    margin: 0;
    color: #1f2937;
    font-size: 17px;
    font-weight: 650;
}

.sd-app-section-sub {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.sd-app-metric-grid,
.sd-app-card-grid {
    display: grid;
    gap: 14px;
}

.sd-app-metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.sd-app-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.sd-app-metric {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sd-app-metric span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.sd-app-metric strong {
    display: block;
    margin-top: 8px;
    color: #1e293b;
    font-size: 26px;
    line-height: 1;
}

.sd-app-card {
    display: block;
    min-height: 160px;
    padding: 18px;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
    color: #334155;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sd-app-card:hover {
    transform: translateY(-3px);
    border-color: #b9cbe2;
    box-shadow: 0 16px 28px rgba(15, 23, 42, .10);
    color: #334155;
    text-decoration: none;
}

.sd-app-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-app-avatar {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    background: #fff;
}

.sd-app-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-app-avatar--contain img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.sd-app-card-title {
    margin: 0;
    color: #1e293b;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
}

.sd-app-card-meta {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.sd-app-card-body {
    margin-top: 14px;
    color: #475569;
    font-size: 13px;
    line-height: 1.65;
}

.sd-app-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 14px;
    padding: 0 13px;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    background: #eff6ff;
    color: #0b63ce;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.sd-app-action:hover {
    color: #084fa5;
    text-decoration: none;
}

.sd-app-empty {
    padding: 18px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-size: 13px;
}

.sd-app-table-wrap {
    overflow-x: auto;
}

.sd-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sd-app-table th {
    padding: 11px 12px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 750;
    text-align: left;
}

.sd-app-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #334155;
    vertical-align: middle;
}

.sd-app-account {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-app-account img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
}

.sd-app-table-button {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    background: #eff6ff;
    color: #0b63ce;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

@media (max-width: 760px) {
    .sd-app-dashboard {
        padding: 12px;
    }

    .sd-app-hero,
    .sd-app-section-head {
        flex-direction: column;
    }

    .sd-app-hero h1 {
        font-size: 24px;
    }
}
