:root {
    --sp-font-family: "spm_vazir", Vazir, sans-serif;
    --sp-orange: #ff7a00;
    --sp-orange-deep: #ea6800;
    --sp-orange-soft: #fff0e1;
    --sp-blue: #334681;
    --sp-blue-light: #4f63a6;
    --sp-blue-deep: #1f2a4d;
    --sp-blue-soft: #e9eefb;
    --sp-slate: #4b5567;
    --sp-text: #172033;
    --sp-muted: #65718a;
    --sp-line: rgba(51, 70, 129, 0.12);
    --sp-white: #ffffff;
    --sp-background: #f6f8fc;
    --sp-success: #15803d;
    --sp-danger: #b91c1c;
    --sp-warning: #b45309;
    --sp-hero-shadow: 0 30px 80px rgba(24, 36, 71, 0.16);
    --sp-card-shadow: 0 18px 40px rgba(26, 38, 73, 0.12);
    --sp-card-shadow-strong: 0 28px 70px rgba(26, 38, 73, 0.16);
    --sp-radius-xl: 36px;
    --sp-radius-lg: 30px;
    --sp-radius-md: 22px;
    --sp-radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.sp-home-body {
    margin: 0;
    font-family: var(--sp-font-family);
    font-weight: 400;
    font-synthesis: none;
    color: var(--sp-text);
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.09), transparent 30%),
        radial-gradient(circle at top left, rgba(51, 70, 129, 0.12), transparent 28%),
        linear-gradient(180deg, #f6f8fd 0%, #ffffff 52%, #f7f9ff 100%);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.sp-home-shell {
    position: relative;
}

.sp-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 16px 0;
    backdrop-filter: blur(18px);
    background: rgba(246, 248, 253, 0.86);
    border-bottom: 1px solid rgba(51, 70, 129, 0.07);
}

.sp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sp-text);
    min-width: max-content;
}

.sp-brand img {
    width: 78px;
}

.sp-brand strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.7;
}

.sp-brand span {
    display: block;
    color: var(--sp-muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.sp-topbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1 1 auto;
    margin: 0 8px;
}

.sp-topbar-nav a {
    position: relative;
    color: rgba(31, 42, 77, 0.74);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.sp-topbar-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.9);
    transition: width 0.2s ease;
}

.sp-topbar-nav a:hover {
    color: var(--sp-blue-deep);
}

.sp-topbar-nav a:hover::after {
    width: 100%;
}

.sp-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sp-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(31, 42, 77, 0.08);
    cursor: pointer;
}

.sp-nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: rgba(51, 70, 129, 0.85);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sp-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.sp-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.sp-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.sp-mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 20, 39, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 39;
}

.sp-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 320px);
    height: 100vh;
    padding: 22px 20px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
    box-shadow: -18px 0 42px rgba(18, 28, 56, 0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 40;
}

.sp-mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(51, 70, 129, 0.08);
}

.sp-mobile-nav-head strong {
    color: var(--sp-blue-deep);
    font-size: 0.92rem;
}

.sp-mobile-nav-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: rgba(51, 70, 129, 0.07);
    color: var(--sp-blue-deep);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.sp-mobile-nav-links {
    display: grid;
    gap: 10px;
}

.sp-mobile-nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--sp-text);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(51, 70, 129, 0.08);
    box-shadow: 0 10px 24px rgba(31, 42, 77, 0.06);
    font-size: 0.92rem;
    font-weight: 700;
}

body.sp-nav-open {
    overflow: hidden;
}

body.sp-nav-open .sp-mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.sp-nav-open .sp-mobile-nav {
    transform: translateX(0);
}

.sp-primary-button,
.sp-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border-radius: 16px;
    padding: 0 20px;
    font-weight: 900;
    font-size: 0.88rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.sp-primary-button {
    background: linear-gradient(135deg, var(--sp-orange) 0%, var(--sp-orange-deep) 100%);
    color: var(--sp-white);
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.28);
    border: 0;
}

.sp-secondary-button {
    background: rgba(51, 70, 129, 0.08);
    color: var(--sp-blue-deep);
    border: 1px solid rgba(51, 70, 129, 0.1);
}

.sp-primary-button:hover,
.sp-secondary-button:hover {
    transform: translateY(-2px);
}

.sp-primary-button:hover {
    color: var(--sp-white);
}

.sp-large-button {
    min-height: 52px;
    padding: 0 24px;
}

.sp-topbar-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 0.86rem;
}

.sp-hero-pricing-button {
    background: linear-gradient(135deg, var(--sp-blue) 0%, var(--sp-blue-deep) 100%);
    color: var(--sp-white);
    border-color: rgba(31, 42, 77, 0.18);
    box-shadow: 0 16px 30px rgba(51, 70, 129, 0.2);
}

.sp-hero-pricing-button:hover {
    color: var(--sp-white);
    background: linear-gradient(135deg, #3d5298 0%, #1f2a4d 100%);
}

.sp-hero-section {
    position: relative;
    padding: 46px 0 34px;
}

.sp-hero-copy {
    position: relative;
    z-index: 2;
}

.sp-hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 15px;
    margin-bottom: 15px;
    color: var(--sp-orange-deep);
    background: rgba(255, 122, 0, 0.1);
    font-size: 0.86rem;
    line-height: 1.8;
    font-weight: 900;
}

.sp-hero-copy h1 {
    font-size: clamp(1.78rem, 2.6vw, 2.42rem);
    line-height: 1.5;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.sp-hero-copy h1 span {
    color: var(--sp-blue);
    display: block;
    margin-top: 5px;
}

.sp-hero-copy p,
.sp-section-heading p,
.sp-cta-copy p,
.sp-feature-card p,
.sp-footer p {
    color: var(--sp-muted);
    font-size: 0.94rem;
    line-height: 2;
    margin: 0;
}

.sp-hero-festival-card {
    margin: 22px 0 20px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 122, 0, 0.22);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 237, 0.96));
    box-shadow: 0 18px 42px rgba(255, 122, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sp-hero-festival-card span {
    display: block;
    color: var(--sp-orange-deep);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.8;
}

.sp-hero-festival-card strong {
    display: block;
    color: var(--sp-blue-deep);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 950;
}

.sp-hero-festival-card small {
    display: block;
    color: var(--sp-muted);
    font-size: 0.78rem;
    line-height: 1.9;
}

.sp-three-step {
    display: flex;
    align-items: stretch;
    gap: 14px;
    margin: 0 0 20px;
}

.sp-three-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(51, 70, 129, 0.08);
    box-shadow: 0 10px 24px rgba(31, 42, 77, 0.06);
}

.sp-three-step-item strong {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sp-orange) 0%, var(--sp-orange-deep) 100%);
    color: var(--sp-white);
    font-size: 0.95rem;
}

.sp-three-step-item span {
    color: var(--sp-text);
    display: block;
    font-size: 0.84rem;
    line-height: 1.7;
    font-weight: 900;
}

.sp-three-step-item small {
    display: block;
    margin-top: 4px;
    color: var(--sp-orange-deep);
    font-size: 0.74rem;
    line-height: 1.6;
    font-weight: 700;
}

.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 26px;
}

.sp-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sp-proof-chip {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 255, 0.94));
    border: 1px solid rgba(51, 70, 129, 0.08);
    box-shadow: 0 20px 42px rgba(25, 37, 72, 0.1);
    border-radius: 24px;
    padding: 17px;
}

.sp-proof-chip::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.95), rgba(51, 70, 129, 0.88));
}

.sp-proof-chip-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sp-proof-chip-top small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(51, 70, 129, 0.08);
    color: var(--sp-blue);
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
}

.sp-proof-chip strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--sp-blue-deep);
    font-size: 1.85rem;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

.sp-proof-chip span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--sp-muted);
    line-height: 1.75;
    font-size: 0.8rem;
    text-align: center;
}

.sp-proof-chip-store {
    background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.16), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 239, 0.96));
}

.sp-proof-chip-market {
    background: radial-gradient(circle at top left, rgba(51, 70, 129, 0.18), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 255, 0.96));
}

.sp-proof-chip-speed {
    background: radial-gradient(circle at top left, rgba(255, 160, 78, 0.18), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.96));
}

.sp-hero-visual {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    z-index: 2;
}

.sp-hero-motion {
    position: absolute;
    inset: 54px -8% 34px 8%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.sp-hero-halo,
.sp-hero-beam,
.sp-hero-spark {
    position: absolute;
    pointer-events: none;
}

.sp-hero-halo {
    border-radius: 50%;
    filter: blur(34px);
    opacity: 0.42;
    animation: haloFloat 6.8s ease-in-out infinite;
}

.sp-hero-halo-one {
    top: 74px;
    left: 16%;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
}

.sp-hero-halo-two {
    top: 172px;
    right: 6%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(51, 70, 129, 0.17), transparent 72%);
    animation-delay: 1.4s;
}

.sp-hero-halo-three {
    top: 314px;
    left: 28%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 195, 130, 0.18), transparent 70%);
    animation-delay: 2.2s;
}

.sp-hero-beam {
    border-radius: 999px;
    opacity: 0;
    filter: blur(7px);
    animation: beamSweep 2.8s ease-in-out infinite;
}

.sp-hero-beam-one {
    top: 108px;
    left: 8%;
    width: 250px;
    height: 26px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.28), rgba(255, 255, 255, 0.05));
    transform: rotate(-12deg);
    --beam-rotate: -12deg;
}

.sp-hero-beam-two {
    top: 272px;
    left: 0;
    width: 290px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(51, 70, 129, 0.22), rgba(255, 255, 255, 0.04));
    transform: rotate(10deg);
    animation-delay: 1.1s;
    --beam-rotate: 10deg;
}

.sp-hero-spark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.85), rgba(255, 122, 0, 0));
    opacity: 0;
    animation: sparkMove 3.2s ease-in-out infinite;
}

.sp-hero-spark-one {
    top: 148px;
    right: 18%;
}

.sp-hero-spark-two {
    top: 328px;
    left: 18%;
    animation-delay: 1.5s;
}

.sp-device-scene {
    position: relative;
    padding: 48px 0;
    z-index: 2;
}

.sp-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sp-orbit-one {
    inset: 90px 30px 90px 30px;
    border: 1px dashed rgba(51, 70, 129, 0.18);
}

.sp-orbit-two {
    inset: 30px 80px 30px 80px;
    border: 1px dashed rgba(255, 122, 0, 0.2);
}

.sp-device-shell {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 40px rgba(17, 27, 58, 0.18));
}

.sp-device-frame {
    position: relative;
    z-index: 4;
}

.sp-device-screen {
    position: absolute;
    inset: 52px 62px 54px 62px;
    z-index: 3;
    border-radius: 44px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(51, 70, 129, 0.95) 0%, rgba(31, 42, 77, 0.98) 100%);
    color: var(--sp-white);
    padding: 22px;
}

.sp-screen-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.sp-screen-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-screen-brand img {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 14px;
}

.sp-screen-brand strong,
.sp-screen-banner strong,
.sp-product-mini strong {
    display: block;
}

.sp-screen-brand span,
.sp-screen-banner small,
.sp-product-mini span,
.sp-screen-footer span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.sp-screen-banner {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(255, 158, 72, 0.9)), url("../img/banner.jpg") center/cover;
    padding: 18px;
    min-height: 126px;
    border-radius: 26px;
    margin-bottom: 16px;
    display: flex;
    align-items: end;
}

.sp-screen-products {
    display: grid;
    gap: 12px;
}

.sp-product-mini {
    display: grid;
    grid-template-columns: 66px 1fr auto;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 22px;
}

.sp-product-mini img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 18px;
}

.sp-product-mini b {
    font-size: 1rem;
    color: #ffe1c4;
}

.sp-product-mini-alt {
    background: rgba(255, 255, 255, 0.07);
}

.sp-product-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
}

.sp-product-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.sp-screen-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.sp-screen-footer div {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.sp-screen-footer strong {
    display: block;
    margin-top: 4px;
}

.sp-section {
    padding: 90px 0;
}

.sp-section-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 255, 0.95));
}

.sp-section-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.sp-section-heading span,
.sp-cta-copy span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.1);
    color: var(--sp-orange-deep);
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.sp-section-heading h2,
.sp-cta-copy h2 {
    font-size: clamp(1.2rem, 1.7vw, 1.62rem);
    line-height: 1.78;
    margin: 0 0 12px;
    font-weight: 950;
}

.sp-card-upgrade-panel,
.sp-cta-panel,
.sp-food-panel {
    border: 1px solid var(--sp-line);
    border-radius: var(--sp-radius-lg);
    box-shadow: var(--sp-card-shadow-strong);
}

.sp-section-card-upgrade {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 122, 0, 0.16), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(51, 70, 129, 0.15), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6f8fc 100%);
}

.sp-card-upgrade-panel {
    overflow: hidden;
    padding: 38px;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.sp-card-upgrade-copy span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.12);
    color: var(--sp-orange-deep);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 950;
}

.sp-card-upgrade-copy h2 {
    margin: 0 0 16px;
    color: var(--sp-text);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.8;
    font-weight: 950;
}

.sp-card-upgrade-copy p {
    margin: 0 0 12px;
    color: var(--sp-muted);
    font-size: 0.95rem;
    line-height: 2.2;
}

.sp-card-upgrade-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sp-card-upgrade-steps {
    display: grid;
    gap: 14px;
}

.sp-card-upgrade-steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(51, 70, 129, 0.1);
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.08), rgba(255, 122, 0, 0.08));
}

.sp-card-upgrade-steps strong {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-blue-deep));
    color: var(--sp-white);
    font-size: 1.1rem;
}

.sp-card-upgrade-steps span {
    color: var(--sp-blue-deep);
    font-weight: 900;
    line-height: 1.9;
}

.sp-section-audience {
    background:
        radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.sp-audience-card,
.sp-feature-card,
.sp-real-showcase-card,
.sp-pricing-card {
    height: 100%;
    border: 1px solid var(--sp-line);
    border-radius: var(--sp-radius-md);
    box-shadow: var(--sp-card-shadow);
}

.sp-audience-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sp-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sp-card-shadow-strong);
}

.sp-audience-card div {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(51, 70, 129, 0.11));
    font-size: 1.65rem;
}

.sp-audience-card h3,
.sp-feature-card h3 {
    margin: 0 0 10px;
    color: var(--sp-text);
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 950;
}

.sp-audience-card p {
    margin: 0;
    color: var(--sp-muted);
    line-height: 2;
    font-size: 0.9rem;
}

.sp-feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
    padding: 28px 28px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.95), rgba(51, 70, 129, 0.78));
}

.sp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(30, 42, 77, 0.14);
}

.sp-feature-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.sp-feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--sp-blue) 0%, var(--sp-blue-deep) 100%);
    color: var(--sp-white);
    font-weight: 900;
    font-size: 1.32rem;
    box-shadow: 0 16px 28px rgba(31, 42, 77, 0.18);
}

.sp-feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(51, 70, 129, 0.08);
    color: var(--sp-blue);
    font-size: 0.78rem;
    font-weight: 900;
}

.sp-feature-card-fast .sp-feature-icon,
.sp-feature-card-fast::before,
.sp-feature-card-torob .sp-feature-icon,
.sp-feature-card-torob::before,
.sp-feature-card-mobile .sp-feature-icon,
.sp-feature-card-mobile::before {
    background: linear-gradient(135deg, #ff8f25 0%, #ff6f00 100%);
}

.sp-feature-card-price .sp-feature-icon,
.sp-feature-card-price::before,
.sp-feature-card-sync .sp-feature-icon,
.sp-feature-card-sync::before,
.sp-feature-card-easy .sp-feature-icon,
.sp-feature-card-easy::before {
    background: linear-gradient(135deg, #334681 0%, #1f2a4d 100%);
}

.sp-section-speedy-food {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 0, 0.18), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(51, 70, 129, 0.18), transparent 34%),
        linear-gradient(135deg, #fff8f0 0%, #ffffff 42%, #f6f8fc 100%);
}

.sp-section-speedy-food::before,
.sp-section-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(51, 70, 129, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 70, 129, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.44;
    pointer-events: none;
}

.sp-section-speedy-food .container,
.sp-section-showcase .container {
    position: relative;
    z-index: 2;
}

.sp-food-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.sp-food-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.12);
    color: var(--sp-orange-deep);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 950;
}

.sp-food-copy h2 {
    margin: 0 0 18px;
    color: var(--sp-text);
    font-size: clamp(1.38rem, 2.1vw, 2.1rem);
    line-height: 1.8;
    font-weight: 950;
}

.sp-food-copy p {
    margin: 0 0 14px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 2.25;
}

.sp-food-copy p strong {
    color: var(--sp-blue);
    font-weight: 950;
}

.sp-food-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sp-food-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sp-food-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border-radius: 22px;
    border: 1px solid rgba(51, 70, 129, 0.10);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 42px rgba(31, 42, 77, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sp-food-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.30);
    box-shadow: 0 20px 55px rgba(31, 42, 77, 0.11);
}

.sp-food-feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(51, 70, 129, 0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sp-food-feature h3 {
    margin: 0 0 5px;
    color: var(--sp-text);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 950;
}

.sp-food-feature p {
    margin: 0;
    color: var(--sp-muted);
    font-size: 13px;
    line-height: 2;
}

.sp-food-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(51, 70, 129, 0.10);
}

.sp-food-bottom div {
    min-height: 96px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.08), rgba(255, 122, 0, 0.08));
    border: 1px solid rgba(51, 70, 129, 0.10);
}

.sp-food-bottom strong {
    display: block;
    margin-bottom: 7px;
    color: var(--sp-blue);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 950;
}

.sp-food-bottom span {
    display: block;
    color: #4b5563;
    font-size: 13px;
    line-height: 2;
}

.sp-section-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 122, 0, 0.10), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(51, 70, 129, 0.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.sp-showcase-grid {
    align-items: stretch;
}

.sp-real-showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-real-showcase-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.32);
    box-shadow: 0 30px 90px rgba(31, 42, 77, 0.16);
}

.sp-real-showcase-phone-wrap {
    position: relative;
    padding: 30px 24px 18px;
    min-height: 390px;
    background: radial-gradient(circle at 50% 12%, rgba(255, 122, 0, 0.18), transparent 30%), linear-gradient(135deg, rgba(51, 70, 129, 0.10), rgba(255, 255, 255, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-real-showcase-glow {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(51, 70, 129, 0.12);
    filter: blur(22px);
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
}

.sp-real-showcase-phone {
    position: relative;
    z-index: 2;
    width: 210px;
    height: 340px;
    border-radius: 34px;
    padding: 12px;
    background: linear-gradient(145deg, #111827, #334681);
    box-shadow: 0 26px 55px rgba(31, 42, 77, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.sp-real-showcase-phone-speaker {
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    margin: 0 auto 9px;
}

.sp-real-showcase-screen {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 14px);
    border-radius: 25px;
    background: #ffffff;
}

.sp-real-showcase-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-real-showcase-screen-cover {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    justify-content: flex-start;
}

.sp-real-showcase-screen-cover span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sp-blue);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(31, 42, 77, 0.16);
}

.sp-real-showcase-body {
    padding: 24px;
}

.sp-real-showcase-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}

.sp-real-showcase-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
    background: #f6f8fc;
    border: 1px solid rgba(51, 70, 129, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sp-real-showcase-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.sp-real-showcase-head h3 {
    margin: 0;
    color: var(--sp-text);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 950;
}

.sp-real-showcase-head span {
    display: block;
    color: var(--sp-orange);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 900;
}

.sp-real-showcase-body p {
    min-height: 86px;
    margin: 0 0 16px;
    color: var(--sp-muted);
    font-size: 14px;
    line-height: 2.05;
}

.sp-real-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 9px;
}

.sp-real-showcase-features li {
    position: relative;
    padding-right: 24px;
    color: var(--sp-text);
    font-size: 13px;
    line-height: 1.9;
    font-weight: 800;
}

.sp-real-showcase-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(51, 70, 129, 0.10);
    color: var(--sp-blue);
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: 950;
}

.sp-real-showcase-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sp-real-showcase-button {
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
    white-space: nowrap;
}

.sp-section-pricing {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(51, 70, 129, 0.12), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}

.sp-festival-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 34px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 122, 0, 0.24);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.96));
    box-shadow: 0 24px 70px rgba(255, 122, 0, 0.14);
}

.sp-festival-copy span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.12);
    color: var(--sp-orange-deep);
    font-size: 0.82rem;
    font-weight: 950;
    margin-bottom: 10px;
}

.sp-festival-copy strong {
    display: block;
    color: var(--sp-blue-deep);
    font-size: clamp(1.1rem, 2vw, 1.58rem);
    line-height: 1.8;
    font-weight: 950;
}

.sp-festival-copy small {
    display: block;
    color: var(--sp-muted);
    font-size: 0.9rem;
    line-height: 1.9;
}

.sp-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.sp-countdown div {
    min-height: 86px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--sp-blue), var(--sp-blue-deep));
    color: var(--sp-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(31, 42, 77, 0.18);
}

.sp-countdown strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 950;
}

.sp-countdown span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 800;
}

.sp-pricing-grid {
    align-items: stretch;
}

.sp-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
    padding: 0;
    border: 1px solid rgba(51, 70, 129, 0.14);
    box-shadow: 0 20px 44px rgba(31, 42, 77, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(31, 42, 77, 0.16);
}

.sp-discount-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sp-orange), var(--sp-orange-deep));
    color: var(--sp-white);
    font-size: 0.76rem;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(255, 122, 0, 0.28);
}

.sp-pricing-head {
    position: relative;
    padding: 24px 20px 18px;
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.96), rgba(67, 89, 163, 0.94));
    text-align: center;
}

.sp-pricing-head span {
    display: block;
    color: var(--sp-white);
    font-size: 1.02rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.sp-pricing-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.8;
}

.sp-pricing-pricebox {
    padding: 20px 20px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(51, 70, 129, 0.08);
}

.sp-pricing-cost-label {
    color: var(--sp-muted);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.8;
}

.sp-old-price {
    display: inline-block;
    margin: 7px 0 4px;
    color: #8b95aa;
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.6;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(185, 28, 28, 0.75);
}

.sp-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 10px;
}

.sp-price strong {
    color: var(--sp-blue-deep);
    font-size: 1.68rem;
    line-height: 1.25;
    font-weight: 950;
}

.sp-pricing-once {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.13), rgba(255, 122, 0, 0.06));
    color: var(--sp-orange-deep);
    font-size: 0.72rem;
    font-weight: 950;
    line-height: 1.6;
}

.sp-pricing-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 18px 0;
}

.sp-pricing-info-grid div {
    padding: 12px 10px;
    border-radius: 16px;
    background: rgba(51, 70, 129, 0.055);
    border: 1px solid rgba(51, 70, 129, 0.08);
    text-align: center;
}

.sp-pricing-info-grid span {
    display: block;
    color: var(--sp-muted);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.sp-pricing-info-grid strong {
    display: block;
    color: var(--sp-blue-deep);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1.7;
}

.sp-pricing-list-wrap {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    margin: 14px 18px 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 70, 129, 0.08);
}

.sp-pricing-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--sp-blue-deep);
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1.5;
}

.sp-pricing-section-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sp-orange) 0%, var(--sp-orange-deep) 100%);
    box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.08);
}

.sp-pricing-list {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sp-pricing-list li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 9px;
    color: var(--sp-text);
    font-size: 0.84rem;
    line-height: 1.85;
    font-weight: 700;
}

.sp-pricing-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    color: var(--sp-orange-deep);
    font-size: 0.72rem;
    line-height: 18px;
    text-align: center;
    font-weight: 950;
}

.sp-pricing-support {
    margin: auto 18px 14px;
    padding: 13px 14px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.08), rgba(255, 122, 0, 0.08));
    color: var(--sp-text);
    font-size: 0.82rem;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sp-pricing-support-title {
    color: var(--sp-blue-deep);
    font-size: 0.78rem;
    font-weight: 950;
}

.sp-pricing-support b {
    color: var(--sp-blue-deep);
    font-weight: 950;
    white-space: nowrap;
}

.sp-pricing-button {
    width: calc(100% - 36px);
    margin: 0 18px 18px;
}

.sp-pricing-card-base .sp-pricing-head {
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.96), rgba(74, 93, 153, 0.94));
}

.sp-pricing-card-silver {
    background: radial-gradient(circle at top left, rgba(197, 202, 212, 0.26), transparent 36%), linear-gradient(180deg, rgba(253, 253, 254, 0.99), rgba(239, 241, 245, 0.98));
}

.sp-pricing-card-silver .sp-pricing-head {
    background: linear-gradient(135deg, rgba(134, 145, 166, 0.98), rgba(182, 189, 202, 0.96));
}

.sp-pricing-card-gold {
    border-color: rgba(255, 177, 82, 0.28);
    background: radial-gradient(circle at top left, rgba(255, 187, 106, 0.22), transparent 36%), linear-gradient(180deg, rgba(255, 252, 245, 0.99), rgba(255, 244, 225, 0.97));
    box-shadow: 0 24px 58px rgba(236, 149, 34, 0.18);
}

.sp-pricing-card-gold .sp-pricing-head {
    background: linear-gradient(135deg, rgba(255, 138, 33, 0.98), rgba(255, 180, 74, 0.96));
}

.sp-pricing-card-vip {
    background: linear-gradient(180deg, rgba(34, 46, 84, 0.98), rgba(25, 34, 61, 0.98));
    border-color: rgba(255, 187, 118, 0.18);
    box-shadow: 0 28px 62px rgba(15, 21, 40, 0.30);
}

.sp-pricing-card-vip .sp-pricing-head {
    background: linear-gradient(135deg, rgba(34, 46, 84, 0.98), rgba(47, 61, 108, 0.96));
}

.sp-pricing-card-vip .sp-pricing-list-wrap,
.sp-pricing-card-vip .sp-pricing-info-grid div {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.09);
}

.sp-pricing-card-vip .sp-pricing-section-title,
.sp-pricing-card-vip .sp-pricing-list li,
.sp-pricing-card-vip .sp-pricing-info-grid strong,
.sp-pricing-card-vip .sp-pricing-support-title {
    color: var(--sp-white);
}

.sp-pricing-card-vip .sp-pricing-info-grid span {
    color: rgba(255, 255, 255, 0.70);
}

.sp-pricing-card-vip .sp-pricing-support {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(255, 255, 255, 0.06));
}

.sp-pricing-card-vip .sp-pricing-support b {
    color: #ffd7b3;
}

.sp-pricing-card-vip .sp-pricing-button.sp-secondary-button {
    background: linear-gradient(135deg, #ff9d39 0%, #ff7a00 100%);
    color: var(--sp-white);
    border-color: rgba(255, 190, 132, 0.4);
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.24);
}

.sp-section-cta {
    background: linear-gradient(180deg, #ffffff, #f6f8fc);
}

.sp-cta-panel {
    padding: 40px;
    background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.16), transparent 24%), linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
}

.sp-cta-highlights {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.sp-cta-highlights div {
    border-right: 3px solid var(--sp-orange);
    background: rgba(255, 255, 255, 0.84);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 12px 24px rgba(35, 47, 84, 0.07);
    font-weight: 800;
    line-height: 1.8;
}

.sp-lead-form {
    background: var(--sp-white);
    border: 1px solid rgba(51, 70, 129, 0.08);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 36px rgba(35, 47, 84, 0.08);
}

.sp-lead-form label,
.sp-checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--sp-blue-deep);
    font-weight: 900;
}

.sp-lead-form input,
.sp-lead-form textarea,
.sp-lead-form select,
.sp-checkout-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(51, 70, 129, 0.14);
    border-radius: 16px;
    padding: 12px 15px;
    color: var(--sp-text);
    background: #fbfcff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sp-lead-form textarea {
    min-height: 118px;
}

.sp-lead-form input:focus,
.sp-lead-form textarea:focus,
.sp-lead-form select:focus,
.sp-checkout-form input:focus {
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.09);
}

.sp-form-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.sp-form-note {
    min-height: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.sp-section-faq {
    background: radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 24%), linear-gradient(135deg, #1d294c 0%, #24345f 56%, #1b2442 100%);
    color: var(--sp-white);
}

.sp-faq-intro {
    position: sticky;
    top: 104px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 44px rgba(8, 14, 29, 0.26);
    backdrop-filter: blur(10px);
}

.sp-faq-intro span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 122, 0, 0.18);
    color: #ffd9b7;
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.sp-faq-intro h2 {
    font-size: clamp(1.12rem, 1.5vw, 1.46rem);
    line-height: 1.9;
    margin: 0 0 12px;
}

.sp-faq-intro p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
    line-height: 2;
}

.sp-faq-reminders {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.sp-faq-reminders div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--sp-white);
    line-height: 1.8;
}

.sp-faq-list {
    display: grid;
    gap: 14px;
}

.sp-faq-item {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(8, 14, 29, 0.18);
}

.sp-faq-item summary {
    position: relative;
    padding: 22px 24px 22px 58px;
    cursor: pointer;
    list-style: none;
    color: var(--sp-blue-deep);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.95;
}

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

.sp-faq-item summary::after {
    content: "+";
    position: absolute;
    left: 20px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    color: var(--sp-orange-deep);
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.sp-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.sp-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--sp-muted);
    line-height: 2;
}

.sp-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sp-checkout-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.sp-checkout-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 34, 0.58);
    backdrop-filter: blur(5px);
}

.sp-checkout-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 780px);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
    box-shadow: 0 32px 80px rgba(12, 23, 49, 0.24);
    padding: 22px;
}

.sp-checkout-modal-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 14px;
    background: rgba(51, 70, 129, 0.08);
    color: var(--sp-blue-deep);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.sp-checkout-modal-head {
    padding-left: 56px;
}

.sp-checkout-modal-head span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.1);
    color: var(--sp-orange-deep);
    font-size: 0.8rem;
    font-weight: 900;
}

.sp-checkout-modal-head h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.18rem, 2vw, 1.48rem);
    line-height: 1.7;
}

.sp-checkout-modal-head p {
    margin: 0;
    color: var(--sp-muted);
    font-size: 0.88rem;
    line-height: 1.85;
}

.sp-checkout-plan {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(51, 70, 129, 0.08), rgba(255, 122, 0, 0.08));
    border: 1px solid rgba(51, 70, 129, 0.12);
}

.sp-checkout-plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--sp-blue-deep);
    font-size: 0.84rem;
    font-weight: 900;
}

.sp-checkout-plan strong {
    display: block;
    margin-top: 10px;
    font-size: 1.08rem;
}

.sp-checkout-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.sp-checkout-plan-grid div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.sp-checkout-plan-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--sp-muted);
    font-size: 0.75rem;
}

.sp-checkout-plan-grid b {
    display: block;
    font-size: 0.86rem;
    line-height: 1.7;
}

.sp-checkout-plan-note {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 70, 129, 0.08);
    color: var(--sp-blue-deep);
    font-size: 0.82rem;
    line-height: 1.85;
}

.sp-checkout-form {
    margin-top: 16px;
}

.sp-checkout-affix,
.sp-checkout-action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-checkout-affix {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(51, 70, 129, 0.14);
    background: #fff;
    direction: ltr;
}

.sp-checkout-affix input {
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.sp-checkout-affix span {
    color: var(--sp-muted);
    white-space: nowrap;
}

.sp-checkout-inline-button {
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sp-orange) 0%, var(--sp-orange-deep) 100%);
    color: var(--sp-white);
    font-weight: 900;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
}

.sp-checkout-inline-button-secondary {
    background: linear-gradient(135deg, #3b63c7 0%, #334681 100%);
    color: var(--sp-white);
    box-shadow: 0 14px 28px rgba(51, 70, 129, 0.22);
}

.sp-checkout-inline-button:disabled {
    cursor: not-allowed;
    opacity: 0.74;
}

.sp-checkout-status,
.sp-checkout-preview {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(51, 70, 129, 0.05);
    border: 1px solid rgba(51, 70, 129, 0.1);
}

.sp-checkout-status {
    min-height: 100%;
}

.sp-checkout-status strong,
.sp-checkout-preview span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.84rem;
}

.sp-checkout-status span {
    display: block;
    color: var(--sp-muted);
    font-size: 0.82rem;
    line-height: 1.75;
}

.sp-checkout-status.is-success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.sp-checkout-status.is-success span {
    color: var(--sp-success);
}

.sp-checkout-preview {
    margin-top: 14px;
}

.sp-checkout-preview span {
    color: var(--sp-muted);
    font-size: 0.76rem;
}

.sp-checkout-preview strong {
    display: block;
    direction: ltr;
    text-align: left;
    color: var(--sp-blue-deep);
    font-size: 0.92rem;
}

.sp-checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.sp-footer {
    padding: 28px 0 40px;
}

.sp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(51, 70, 129, 0.1);
    padding-top: 28px;
}

.sp-footer strong {
    display: block;
    margin-bottom: 8px;
}

.sp-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.sp-footer-links a {
    color: var(--sp-blue);
    font-weight: 700;
}

.sp-footer-enamad {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-footer-enamad a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    min-width: 112px;
    min-height: 112px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 70, 129, 0.1);
    box-shadow: 0 14px 30px rgba(31, 42, 77, 0.08);
}

.sp-footer-enamad img {
    width: 92px;
    height: auto;
}

.sp-fallback-msgbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.sp-fallback-msgbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 34, 0.58);
    backdrop-filter: blur(5px);
}

.sp-fallback-msgbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    border-radius: 24px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 26px 70px rgba(12, 18, 34, 0.24);
    text-align: right;
}

.sp-fallback-msgbox-dialog strong {
    display: block;
    color: var(--sp-blue-deep);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.sp-fallback-msgbox-dialog p {
    margin: 0 0 18px;
    color: var(--sp-muted);
    line-height: 2;
}

.sp-fallback-msgbox-dialog button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sp-orange), var(--sp-orange-deep));
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes haloFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.98);
        opacity: 0.34;
    }
    50% {
        transform: translate3d(14px, -12px, 0) scale(1.06);
        opacity: 0.5;
    }
}

@keyframes beamSweep {
    0% {
        transform: translate3d(-18px, 0, 0) scale(0.96) rotate(var(--beam-rotate, 0deg));
        opacity: 0;
    }
    24% {
        opacity: 0.42;
    }
    70% {
        opacity: 0.36;
    }
    100% {
        transform: translate3d(76px, 0, 0) scale(1.04) rotate(var(--beam-rotate, 0deg));
        opacity: 0;
    }
}

@keyframes sparkMove {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.8);
        opacity: 0;
    }
    35% {
        opacity: 0.9;
    }
    100% {
        transform: translate3d(56px, -28px, 0) scale(1.12);
        opacity: 0;
    }
}

@media (min-width: 1200px) {
    .sp-section-pricing .col-xl-3 {
        display: flex;
    }

    .sp-pricing-card {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .sp-topbar-nav {
        gap: 12px;
    }

    .sp-topbar-nav a {
        font-size: 0.78rem;
    }
}

@media (max-width: 991px) {
    .sp-topbar-actions,
    .sp-topbar-nav {
        display: none;
    }

    .sp-nav-toggle {
        display: inline-flex;
    }

    .sp-hero-visual {
        min-height: 600px;
    }

    .sp-proof-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sp-section {
        padding: 78px 0;
    }

    .sp-faq-intro {
        position: static;
    }

    .sp-food-bottom,
    .sp-festival-panel {
        grid-template-columns: 1fr;
    }

    .sp-festival-panel {
        text-align: center;
    }

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

@media (max-width: 767px) {
    .sp-topbar {
        padding: 12px 0;
    }

    .sp-brand img {
        width: 72px;
    }

    .sp-brand strong {
        font-size: 0.98rem;
    }

    .sp-brand span {
        max-width: 170px;
        font-size: 0.7rem;
    }

    .sp-hero-section {
        padding: 18px 0 24px;
    }

    .sp-hero-copy[data-reveal] {
        opacity: 1;
        transform: none;
    }

    .sp-hero-message {
        text-align: center;
        margin: 0 auto 16px;
        max-width: 540px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
        border: 1px solid rgba(51, 70, 129, 0.08);
        border-radius: 24px;
        padding: 18px 16px 16px;
        box-shadow: 0 18px 38px rgba(28, 40, 74, 0.12);
        backdrop-filter: blur(10px);
    }

    .sp-hero-kicker {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .sp-hero-copy h1 {
        font-size: 1.35rem;
        line-height: 1.72;
    }

    .sp-hero-copy p {
        font-size: 0.9rem;
        line-height: 2;
    }

    .sp-hero-festival-card {
        display: grid;
        text-align: center;
    }

    .sp-three-step {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sp-hero-actions {
        display: grid;
    }

    .sp-proof-row {
        grid-template-columns: 1fr;
    }

    .sp-hero-visual {
        min-height: 425px;
        align-items: start;
    }

    .sp-device-scene {
        padding: 0 0 10px;
    }

    .sp-device-screen {
        inset: 40px 48px 42px 48px;
        padding: 16px;
        border-radius: 34px;
    }

    .sp-screen-banner {
        min-height: 100px;
    }

    .sp-product-mini {
        grid-template-columns: 56px 1fr auto;
    }

    .sp-product-mini img,
    .sp-product-icon {
        width: 56px;
        height: 56px;
    }

    .sp-orbit {
        display: none;
    }

    .sp-card-upgrade-panel,
    .sp-food-panel,
    .sp-cta-panel,
    .sp-faq-intro {
        padding: 24px;
        border-radius: 24px;
    }

    .sp-card-upgrade-actions,
    .sp-food-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sp-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sp-festival-panel {
        padding: 18px;
        border-radius: 24px;
    }

    .sp-pricing-card {
        border-radius: 26px;
        box-shadow: 0 16px 34px rgba(31, 42, 77, 0.11);
    }

    .sp-discount-ribbon {
        top: 12px;
        left: 12px;
        font-size: 0.72rem;
        min-height: 30px;
    }

    .sp-pricing-head {
        padding: 22px 18px 16px;
    }

    .sp-pricing-head span {
        font-size: 1.04rem;
    }

    .sp-pricing-pricebox {
        padding: 18px 18px 15px;
    }

    .sp-old-price {
        font-size: 1rem;
    }

    .sp-price strong {
        font-size: 1.55rem;
    }

    .sp-pricing-info-grid {
        padding: 14px 16px 0;
    }

    .sp-pricing-list-wrap {
        margin: 14px 16px;
        padding: 15px;
    }

    .sp-pricing-list li {
        font-size: 0.92rem;
        line-height: 1.95;
        margin-bottom: 10px;
    }

    .sp-pricing-support {
        margin: auto 16px 14px;
        padding: 13px;
        font-size: 0.9rem;
    }

    .sp-pricing-button {
        width: calc(100% - 32px);
        margin: 0 16px 16px;
        min-height: 52px;
    }

    .sp-real-showcase-actions,
    .sp-footer-inner {
        grid-template-columns: 1fr;
    }

    .sp-footer-inner {
        display: grid;
    }

    .sp-footer-enamad {
        justify-content: flex-start;
    }

    .sp-checkout-modal {
        padding: 10px;
    }

    .sp-checkout-modal-dialog {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .sp-checkout-modal-head {
        padding-left: 42px;
    }

    .sp-checkout-plan-grid {
        grid-template-columns: 1fr;
    }

    .sp-checkout-action {
        flex-direction: column;
    }

    .sp-checkout-action .sp-checkout-inline-button,
    .sp-checkout-actions .sp-form-button {
        width: 100%;
    }

    .sp-checkout-affix {
        flex-wrap: wrap;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .sp-checkout-affix span {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .sp-section {
        padding: 64px 0;
    }

    .sp-hero-section {
        padding: 10px 0 20px;
    }

    .sp-hero-copy h1 {
        font-size: 1.22rem;
    }

    .sp-hero-festival-card strong {
        font-size: 0.94rem;
    }

    .sp-hero-visual {
        min-height: 385px;
    }

    .sp-device-screen {
        inset: 32px 38px 34px 38px;
    }

    .sp-screen-brand span,
    .sp-product-mini span,
    .sp-screen-footer span {
        font-size: 0.72rem;
    }

    .sp-screen-banner strong {
        font-size: 0.82rem;
        line-height: 1.8;
    }

    .sp-product-mini b {
        display: none;
    }

    .sp-card-upgrade-panel,
    .sp-food-panel,
    .sp-cta-panel,
    .sp-lead-form {
        padding: 20px;
    }

    .sp-audience-card,
    .sp-feature-card,
    .sp-real-showcase-body {
        padding: 20px;
    }

    .sp-real-showcase-phone-wrap {
        padding: 24px 18px 14px;
        min-height: 330px;
    }

    .sp-real-showcase-phone {
        width: 180px;
        height: 300px;
        border-radius: 30px;
    }

    .sp-real-showcase-screen {
        border-radius: 22px;
    }

    .sp-real-showcase-body p {
        min-height: auto;
    }

    .sp-food-feature {
        padding: 15px;
        border-radius: 20px;
    }

    .sp-food-feature-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
        font-size: 20px;
    }

    .sp-countdown div {
        min-height: 76px;
        border-radius: 18px;
    }

    .sp-countdown strong {
        font-size: 1.35rem;
    }

    .sp-pricing-info-grid {
        grid-template-columns: 1fr;
    }

    .sp-pricing-support {
        display: grid;
        gap: 4px;
        text-align: center;
    }

    .sp-pricing-support b {
        white-space: normal;
    }

    .sp-faq-item summary {
        padding: 18px 20px 18px 54px;
        font-size: 0.94rem;
    }

    .sp-faq-item p {
        padding: 0 20px 18px;
    }
}

@media (max-width: 767px) {
    .sp-hero-festival-card {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .sp-hero-festival-card * {
        text-align: center !important;
    }

    .sp-hero-festival-card .sp-countdown,
    .sp-hero-festival-card .sp-festival-countdown,
    .sp-hero-festival-card .sp-hero-countdown {
        justify-content: center !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .sp-hero-festival-card [class*="countdown"] {
        justify-content: center !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .sp-hero-festival-card [class*="timer"],
    .sp-hero-festival-card [class*="time"] {
        justify-content: center !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

.sp-hero-section {
    background: #F7F8FD !important;
    background-image: none !important;
}

.sp-hero-section .container {
    background: transparent !important;
}

.sp-device-frame {
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    background: transparent !important;
    outline: 0 !important;
}

.sp-device-frame::before,
.sp-device-frame::after {
    display: none !important;
    content: none !important;
}

.sp-device-frame img {
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    background: transparent !important;
    outline: 0 !important;
}

.sp-device-shell {
    filter: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    outline: 0 !important;
}

.sp-device-shell::before,
.sp-device-shell::after {
    display: none !important;
    content: none !important;
}

/* =========================
   Hero Festival Card - Strong Offer
========================= */

.sp-hero-festival-card {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    margin: 22px 0 20px !important;
    padding: 20px 22px !important;
    border-radius: 26px !important;
    border: 2px solid rgba(255, 122, 0, 0.55) !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.38), transparent 22%),
        radial-gradient(circle at 92% 10%, rgba(255, 210, 150, 0.28), transparent 30%),
        linear-gradient(135deg, #ff7a00 0%, #ff8f1f 42%, #ea6800 100%) !important;
    box-shadow:
        0 22px 50px rgba(255, 122, 0, 0.28),
        0 8px 20px rgba(31, 42, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
    color: #ffffff !important;
    transform: translateZ(0);
}

.sp-hero-festival-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -2;
    background:
        linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 62%);
    transform: translateX(120%);
    animation: spFestivalShine 3.2s ease-in-out infinite;
}

.sp-hero-festival-card::after {
    content: "فقط تا پایان ماه";
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    min-height: 32px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(31, 42, 77, 0.92);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(31, 42, 77, 0.22);
}

.sp-hero-festival-card * {
    color: inherit !important;
}

.sp-hero-festival-card strong,
.sp-hero-festival-card b {
    color: #ffffff !important;
    font-weight: 950 !important;
}

.sp-hero-festival-card h3,
.sp-hero-festival-card .sp-hero-festival-title,
.sp-hero-festival-card [class*="title"] {
    margin: 0 0 8px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1.7 !important;
    font-weight: 950 !important;
}

.sp-hero-festival-card p,
.sp-hero-festival-card span,
.sp-hero-festival-card small {
    color: rgba(255, 255, 255, 0.92) !important;
}

.sp-hero-festival-card .sp-hero-festival-discount,
.sp-hero-festival-card [class*="discount"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 6px 18px !important;
    margin: 8px 0 10px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #ea6800 !important;
    font-size: 22px !important;
    line-height: 1.4 !important;
    font-weight: 950 !important;
    box-shadow: 0 14px 28px rgba(31, 42, 77, 0.16) !important;
}

.sp-hero-festival-card .sp-hero-festival-discount *,
.sp-hero-festival-card [class*="discount"] * {
    color: #ea6800 !important;
}

.sp-hero-festival-card .sp-countdown,
.sp-hero-festival-card [class*="countdown"] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

.sp-hero-festival-card .sp-countdown div,
.sp-hero-festival-card [class*="countdown"] div {
    min-width: 58px !important;
    padding: 8px 8px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.17) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    text-align: center !important;
}

.sp-hero-festival-card .sp-countdown strong,
.sp-hero-festival-card [class*="countdown"] strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 950 !important;
}

.sp-hero-festival-card .sp-countdown span,
.sp-hero-festival-card [class*="countdown"] span {
    display: block !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
}

@keyframes spFestivalShine {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    48% {
        transform: translateX(-120%);
        opacity: 1;
    }

    100% {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .sp-hero-festival-card {
        margin: 18px 0 18px !important;
        padding: 54px 18px 20px !important;
        border-radius: 24px !important;
        text-align: center !important;
    }

    .sp-hero-festival-card::after {
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .sp-hero-festival-card,
    .sp-hero-festival-card > *,
    .sp-hero-festival-card * {
        text-align: center !important;
    }

    .sp-hero-festival-card h3,
    .sp-hero-festival-card .sp-hero-festival-title,
    .sp-hero-festival-card [class*="title"] {
        font-size: 18px !important;
    }

    .sp-hero-festival-card .sp-countdown,
    .sp-hero-festival-card [class*="countdown"] {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .sp-hero-festival-card .sp-countdown div,
    .sp-hero-festival-card [class*="countdown"] div {
        min-width: 64px !important;
    }
}

/* =========================
   Hero Festival Card - Desktop Fix
   Mobile view remains unchanged
========================= */

@media (min-width: 768px) {
    .sp-hero-festival-card {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-areas:
            "title badge"
            "text countdown";
        align-items: center !important;
        column-gap: 22px !important;
        row-gap: 10px !important;
        padding: 22px 24px !important;
        min-height: 150px !important;
        text-align: right !important;
    }

    .sp-hero-festival-card::after {
        content: "فقط تا پایان ماه" !important;
        position: static !important;
        grid-area: badge !important;
        transform: none !important;
        justify-self: end !important;
        align-self: start !important;
        min-height: 34px !important;
        padding: 7px 14px !important;
        border-radius: 999px !important;
        background: rgba(31, 42, 77, 0.92) !important;
        color: #ffffff !important;
        font-size: 12px !important;
        line-height: 1.6 !important;
        font-weight: 900 !important;
        white-space: nowrap !important;
        box-shadow: 0 10px 22px rgba(31, 42, 77, 0.22) !important;
    }

    .sp-hero-festival-card .sp-hero-festival-title,
    .sp-hero-festival-card h3,
    .sp-hero-festival-card [class*="title"] {
        grid-area: title !important;
        margin: 0 !important;
        text-align: right !important;
        font-size: 20px !important;
        line-height: 1.7 !important;
    }

    .sp-hero-festival-card p {
        grid-area: text !important;
        max-width: 520px !important;
        margin: 0 !important;
        text-align: right !important;
        line-height: 2 !important;
    }

    .sp-hero-festival-card .sp-hero-festival-discount,
    .sp-hero-festival-card [class*="discount"] {
        grid-area: badge !important;
        justify-self: end !important;
        align-self: end !important;
        margin: 44px 0 0 !important;
        min-height: 42px !important;
        padding: 6px 18px !important;
        white-space: nowrap !important;
    }

    .sp-hero-festival-card .sp-hero-festival-countdown,
    .sp-hero-festival-card .sp-countdown,
    .sp-hero-festival-card [class*="countdown"] {
        grid-area: countdown !important;
        justify-self: end !important;
        align-self: center !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    .sp-hero-festival-card .sp-hero-festival-countdown div,
    .sp-hero-festival-card .sp-countdown div,
    .sp-hero-festival-card [class*="countdown"] div {
        min-width: 58px !important;
        padding: 8px 8px !important;
    }
}

@media (min-width: 768px) {
    .sp-hero-festival-card .sp-hero-festival-countdown,
    .sp-hero-festival-card .sp-countdown,
    .sp-hero-festival-card [class*="countdown"] {
        direction: rtl !important;
        text-align: center !important;
    }

    .sp-hero-festival-card .sp-hero-festival-countdown > div,
    .sp-hero-festival-card .sp-countdown > div,
    .sp-hero-festival-card [class*="countdown"] > div {
        direction: rtl !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .sp-hero-festival-card .sp-hero-festival-countdown strong,
    .sp-hero-festival-card .sp-countdown strong,
    .sp-hero-festival-card [class*="countdown"] strong {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        direction: rtl !important;
    }

    .sp-hero-festival-card .sp-hero-festival-countdown span,
    .sp-hero-festival-card .sp-countdown span,
    .sp-hero-festival-card [class*="countdown"] span {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        direction: rtl !important;
    }
}

/* =========================
   Pricing Cards - Safe Minimal Compact Fix
   فقط جمع‌وجور، تفکیک بهتر، بدون بهم‌ریختن ساختار
========================= */

.sp-section-pricing {
    padding-top: 64px !important;
    padding-bottom: 68px !important;
}

.sp-section-pricing .sp-section-heading {
    margin-bottom: 24px !important;
}

.sp-festival-panel {
    margin-bottom: 26px !important;
    padding: 18px !important;
    border-radius: 24px !important;
}

.sp-pricing-grid {
    --bs-gutter-y: 1.25rem !important;
}

.sp-pricing-card {
    overflow: hidden !important;
    border-radius: 24px !important;
    border: 2px solid rgba(51, 70, 129, 0.16) !important;
    box-shadow:
        0 18px 42px rgba(31, 42, 77, 0.14),
        0 4px 12px rgba(31, 42, 77, 0.08) !important;
    background: #ffffff !important;
}

.sp-pricing-card:hover {
    transform: translateY(-3px) !important;
    box-shadow:
        0 22px 52px rgba(31, 42, 77, 0.17),
        0 5px 14px rgba(31, 42, 77, 0.10) !important;
}

/* Header */
.sp-pricing-head {
    padding: 16px 16px 12px !important;
}

.sp-pricing-head span {
    margin-bottom: 4px !important;
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
}

.sp-pricing-kicker {
    font-size: 0.72rem !important;
    line-height: 1.65 !important;
}

/* Discount badge */
.sp-discount-ribbon {
    top: 12px !important;
    left: 12px !important;
    min-height: 28px !important;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
    border-radius: 999px !important;
}

/* Price area */
.sp-pricing-pricebox {
    padding: 13px 16px 12px !important;
    background: #f8fafc !important;
    border-bottom: 1px solid rgba(51, 70, 129, 0.10) !important;
}

.sp-pricing-cost-label {
    font-size: 0.72rem !important;
    line-height: 1.6 !important;
}

.sp-old-price {
    margin: 4px 0 2px !important;
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
}

.sp-price {
    margin: 2px 0 7px !important;
}

.sp-price strong {
    font-size: 1.42rem !important;
    line-height: 1.35 !important;
}

.sp-pricing-once {
    min-height: 26px !important;
    padding: 3px 10px !important;
    font-size: 0.68rem !important;
    line-height: 1.5 !important;
}

/* Domain / commission */
.sp-pricing-info-grid {
    gap: 8px !important;
    padding: 12px 14px 0 !important;
}

.sp-pricing-info-grid div {
    padding: 9px 8px !important;
    border-radius: 14px !important;
    background: #eef3ff !important;
    border: 1px solid rgba(51, 70, 129, 0.12) !important;
}

.sp-pricing-info-grid span {
    margin-bottom: 3px !important;
    font-size: 0.68rem !important;
    line-height: 1.5 !important;
}

.sp-pricing-info-grid strong {
    font-size: 0.74rem !important;
    line-height: 1.55 !important;
}

/* Features */
.sp-pricing-list-wrap {
    margin: 12px 14px 12px !important;
    padding: 11px 12px 9px !important;
    border-radius: 16px !important;
    background: #f8fafc !important;
    border: 1px solid rgba(51, 70, 129, 0.12) !important;
}

.sp-pricing-section-title {
    margin-bottom: 8px !important;
    font-size: 0.76rem !important;
    line-height: 1.5 !important;
}

.sp-pricing-list li {
    margin-bottom: 5px !important;
    padding-right: 22px !important;
    font-size: 0.78rem !important;
    line-height: 1.65 !important;
}

.sp-pricing-list li::before {
    top: 4px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    font-size: 0.66rem !important;
}

/* Support */
.sp-pricing-support {
    margin: auto 14px 12px !important;
    padding: 9px 11px !important;
    border-radius: 15px !important;
    background: #fff3e8 !important;
    border: 1px solid rgba(255, 122, 0, 0.16) !important;
    font-size: 0.76rem !important;
    line-height: 1.6 !important;
}

.sp-pricing-support-title {
    font-size: 0.72rem !important;
}

.sp-pricing-support b {
    font-size: 0.78rem !important;
}

/* Button */
.sp-pricing-button {
    width: calc(100% - 28px) !important;
    margin: 0 14px 14px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    font-size: 0.78rem !important;
}

/* Card color separation */
.sp-pricing-card-base {
    border-color: rgba(51, 70, 129, 0.22) !important;
}

.sp-pricing-card-silver {
    border-color: rgba(148, 156, 174, 0.36) !important;
}

.sp-pricing-card-silver .sp-pricing-pricebox,
.sp-pricing-card-silver .sp-pricing-list-wrap {
    background: #f1f3f7 !important;
}

.sp-pricing-card-gold {
    border-color: rgba(255, 122, 0, 0.42) !important;
    box-shadow:
        0 20px 48px rgba(255, 122, 0, 0.18),
        0 4px 12px rgba(31, 42, 77, 0.08) !important;
}

.sp-pricing-card-gold .sp-pricing-pricebox,
.sp-pricing-card-gold .sp-pricing-list-wrap {
    background: #fff7ed !important;
}

.sp-pricing-card-vip {
    border-color: rgba(255, 187, 118, 0.42) !important;
}

.sp-pricing-card-vip .sp-pricing-pricebox {
    background: rgba(255, 255, 255, 0.96) !important;
}

.sp-pricing-card-vip .sp-pricing-list-wrap,
.sp-pricing-card-vip .sp-pricing-info-grid div {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
}

.sp-pricing-card-vip .sp-pricing-support {
    background: rgba(255, 122, 0, 0.16) !important;
    border-color: rgba(255, 187, 118, 0.22) !important;
}

/* =========================
   Mobile Pricing Cards
========================= */

@media (max-width: 767px) {
    .sp-section-pricing {
        padding-top: 54px !important;
        padding-bottom: 58px !important;
    }

    .sp-section-pricing .container {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .sp-section-pricing .sp-section-heading {
        margin-bottom: 20px !important;
    }

    .sp-festival-panel {
        margin-right: 2px !important;
        margin-left: 2px !important;
        margin-bottom: 24px !important;
        padding: 16px !important;
        border-radius: 22px !important;
    }

    .sp-pricing-grid {
        --bs-gutter-y: 1.35rem !important;
    }

    .sp-pricing-grid > [class*="col-"] {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .sp-pricing-card {
        margin-right: 4px !important;
        margin-left: 4px !important;
        border-radius: 24px !important;
        border-width: 2px !important;
        box-shadow:
            0 18px 42px rgba(31, 42, 77, 0.20),
            0 4px 12px rgba(31, 42, 77, 0.10) !important;
    }

    .sp-pricing-card:hover {
        transform: none !important;
    }

    .sp-pricing-head {
        padding: 13px 14px 10px !important;
    }

    .sp-pricing-head span {
        font-size: 0.96rem !important;
    }

    .sp-pricing-kicker {
        font-size: 0.7rem !important;
    }

    .sp-discount-ribbon {
        top: 10px !important;
        left: 10px !important;
        min-height: 26px !important;
        padding: 0 9px !important;
        font-size: 0.65rem !important;
    }

    .sp-pricing-pricebox {
        padding: 11px 14px 10px !important;
    }

    .sp-pricing-cost-label {
        font-size: 0.68rem !important;
    }

    .sp-old-price {
        margin-top: 3px !important;
        font-size: 0.8rem !important;
    }

    .sp-price {
        margin-bottom: 6px !important;
    }

    .sp-price strong {
        font-size: 1.34rem !important;
    }

    .sp-pricing-once {
        min-height: 24px !important;
        font-size: 0.66rem !important;
    }

    .sp-pricing-info-grid {
        grid-template-columns: 1fr 1fr !important;
        padding: 10px 12px 0 !important;
        gap: 7px !important;
    }

    .sp-pricing-info-grid div {
        min-height: 54px !important;
        padding: 7px 6px !important;
        border-radius: 13px !important;
    }

    .sp-pricing-info-grid span {
        font-size: 0.65rem !important;
    }

    .sp-pricing-info-grid strong {
        font-size: 0.7rem !important;
        line-height: 1.5 !important;
    }

    .sp-pricing-list-wrap {
        margin: 10px 12px 10px !important;
        padding: 10px 11px 8px !important;
        border-radius: 15px !important;
    }

    .sp-pricing-section-title {
        margin-bottom: 7px !important;
        font-size: 0.72rem !important;
    }

    .sp-pricing-list li {
        margin-bottom: 4px !important;
        padding-right: 20px !important;
        font-size: 0.76rem !important;
        line-height: 1.55 !important;
    }

    .sp-pricing-list li::before {
        top: 3px !important;
        width: 15px !important;
        height: 15px !important;
        line-height: 15px !important;
        font-size: 0.62rem !important;
    }

    .sp-pricing-support {
        margin: auto 12px 10px !important;
        padding: 8px 10px !important;
        border-radius: 14px !important;
        font-size: 0.72rem !important;
    }

    .sp-pricing-support-title {
        font-size: 0.68rem !important;
    }

    .sp-pricing-support b {
        font-size: 0.74rem !important;
    }

    .sp-pricing-button {
        width: calc(100% - 24px) !important;
        margin: 0 12px 12px !important;
        min-height: 42px !important;
        border-radius: 13px !important;
        font-size: 0.76rem !important;
    }
}

/* موبایل خیلی کوچک */
@media (max-width: 575px) {
    .sp-section-pricing .container {
        padding-right: 26px !important;
        padding-left: 26px !important;
    }

    .sp-pricing-card {
        margin-right: 2px !important;
        margin-left: 2px !important;
    }

    .sp-pricing-list li:nth-child(n+6) {
        display: none !important;
    }
}


/* =========================
   VIP Pricing Card Fix
========================= */

.sp-pricing-card-vip {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 34%),
        linear-gradient(180deg, #222e54 0%, #19223d 100%) !important;
    border-color: rgba(255, 187, 118, 0.42) !important;
    color: #ffffff !important;
}

.sp-pricing-card-vip .sp-pricing-head {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(51, 70, 129, 0.92)) !important;
}

.sp-pricing-card-vip .sp-pricing-head span,
.sp-pricing-card-vip .sp-pricing-kicker {
    color: #ffffff !important;
}

.sp-pricing-card-vip .sp-pricing-pricebox {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom-color: rgba(255, 187, 118, 0.22) !important;
}

.sp-pricing-card-vip .sp-pricing-cost-label,
.sp-pricing-card-vip .sp-old-price,
.sp-pricing-card-vip .sp-price strong,
.sp-pricing-card-vip .sp-pricing-once {
    color: var(--sp-blue-deep) !important;
}

.sp-pricing-card-vip .sp-pricing-once {
    background: rgba(255, 122, 0, 0.12) !important;
}

.sp-pricing-card-vip .sp-pricing-info-grid div {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.sp-pricing-card-vip .sp-pricing-info-grid span {
    color: rgba(255, 255, 255, 0.72) !important;
}

.sp-pricing-card-vip .sp-pricing-info-grid strong {
    color: #ffffff !important;
}

.sp-pricing-card-vip .sp-pricing-list-wrap {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
}

.sp-pricing-card-vip .sp-pricing-section-title {
    color: #ffffff !important;
}

.sp-pricing-card-vip .sp-pricing-list li {
    color: rgba(255, 255, 255, 0.92) !important;
}

.sp-pricing-card-vip .sp-pricing-list li::before {
    background: rgba(255, 122, 0, 0.26) !important;
    color: #ffd7b3 !important;
}

.sp-pricing-card-vip .sp-pricing-support {
    background: rgba(255, 122, 0, 0.16) !important;
    border-color: rgba(255, 187, 118, 0.22) !important;
    color: #ffffff !important;
}

.sp-pricing-card-vip .sp-pricing-support-title {
    color: rgba(255, 255, 255, 0.82) !important;
}

.sp-pricing-card-vip .sp-pricing-support b {
    color: #ffd7b3 !important;
}

.sp-pricing-card-vip .sp-pricing-button.sp-secondary-button {
    background: linear-gradient(135deg, #ff9d39 0%, #ff7a00 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 190, 132, 0.42) !important;
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.24) !important;
}

.sp-pricing-card-vip .sp-pricing-button.sp-secondary-button:hover {
    background: linear-gradient(135deg, #ffae5c 0%, #ff7a00 100%) !important;
    color: #ffffff !important;
}

/* بزرگ‌تر کردن اسم پلن‌ها در سر تیتر کارت‌های تعرفه */
.sp-pricing-head span {
    font-size: 1.95rem !important;
    line-height: 1.45 !important;
    font-weight: 950 !important;
}

@media (max-width: 767px) {
    .sp-pricing-head span {
        font-size: 1.65rem !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 575px) {
    .sp-pricing-head span {
        font-size: 1.5rem !important;
    }
}

.sp-discount-ribbon {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* =========================
   Showcase Phone - iPhone 15 Style
========================= */

.sp-real-showcase-phone-wrap {
    min-height: 530px !important;
    padding: 28px 20px 18px !important;
}

.sp-real-showcase-phone {
    width: 248px !important;
    height: 505px !important;
    border-radius: 42px !important;
    padding: 7px !important;
    background:
        linear-gradient(145deg, #0f172a 0%, #26365f 55%, #111827 100%) !important;
    box-shadow:
        0 24px 54px rgba(31, 42, 77, 0.30),
        inset 0 0 0 1px rgba(255, 255, 255, 0.20),
        inset 0 0 0 3px rgba(0, 0, 0, 0.28) !important;
}

.sp-real-showcase-phone-speaker {
    position: absolute !important;
    top: 13px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    z-index: 5 !important;
    width: 76px !important;
    height: 22px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(5, 10, 22, 0.92) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.18) !important;
}

.sp-real-showcase-screen {
    height: 100% !important;
    border-radius: 36px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: #ffffff !important;
}

.sp-real-showcase-screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.sp-real-showcase-screen-cover {
    right: 14px !important;
    bottom: 14px !important;
    left: 14px !important;
}

.sp-real-showcase-screen-cover span {
    min-height: 32px !important;
    padding: 5px 13px !important;
    font-size: 12px !important;
}

/* سایه پشت موبایل کمی حرفه‌ای‌تر */
.sp-real-showcase-glow {
    width: 250px !important;
    height: 250px !important;
    top: 72px !important;
    background:
        radial-gradient(circle, rgba(255, 122, 0, 0.16), rgba(51, 70, 129, 0.10), transparent 70%) !important;
    filter: blur(24px) !important;
}

/* Tablet */
@media (max-width: 991px) {
    .sp-real-showcase-phone-wrap {
        min-height: 450px !important;
    }

    .sp-real-showcase-phone {
        width: 230px !important;
        height: 450px !important;
        border-radius: 40px !important;
    }

    .sp-real-showcase-screen {
        border-radius: 34px !important;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .sp-real-showcase-phone-wrap {
        min-height: 450px !important;
        padding: 24px 16px 14px !important;
    }

    .sp-real-showcase-phone {
        width: 218px !important;
        height: 450px !important;
        border-radius: 38px !important;
        padding: 6px !important;
    }

    .sp-real-showcase-screen {
        border-radius: 32px !important;
    }

    .sp-real-showcase-phone-speaker {
        top: 12px !important;
        width: 68px !important;
        height: 20px !important;
    }
}

