.redesign-page {
    --font-fa: "Vazirmatn", Tahoma, Arial, sans-serif;
    --font-en: "Poppins", "Vazirmatn", Arial, sans-serif;

    --redesign-dark: #0f172a;
    --redesign-text: #334155;
    --redesign-muted: #64748b;

    --accent: #FF9D23;
    --accent-dark: #d97706;
    --accent-soft: #fff4e5;
    --accent-softer: #fffaf2;
    --accent-border: #ffd79f;
    --accent-rgb: 255, 157, 35;

    --border: #e2e8f0;
    --card-shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
    --card-shadow-hover: 0 30px 70px rgba(15, 23, 42, 0.15);

    width: 100%;
    min-height: 100vh;
    padding: 70px 18px;
    overflow: hidden;
    font-family: var(--font-fa);
    color: #1e293b;
    font-weight: 400;

    /* Background fixed: no page gradient */
    background: #fffaf2;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* =========================================================
   ROOT / BODY / HEADER BACKGROUND FIX
   ========================================================= */

html,
body {
    background: #fffaf2;
}

.site-header {
    background: #fffaf2;
    border: none;
    box-shadow: none;
}

.site-header::before,
.site-header::after {
    display: none;
}

.redesign-page ::selection {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

/* Hero */

.redesign-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 55px;
    padding: 82px 60px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.62), transparent 26%),
        linear-gradient(
            135deg,
            rgba(var(--accent-rgb), 0.28) 0%,
            rgba(var(--accent-rgb), 0.18) 48%,
            rgba(var(--accent-rgb), 0.08) 100%
        );
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    border-radius: 36px;
    text-align: center;
    box-shadow: 0 28px 80px rgba(var(--accent-rgb), 0.16);
    overflow: hidden;
}

.redesign-hero::before,
.redesign-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    filter: blur(2px);
    pointer-events: none;
}

.redesign-hero::before {
    width: 170px;
    height: 170px;
    top: -55px;
    right: -35px;
}

.redesign-hero::after {
    width: 120px;
    height: 120px;
    left: 70px;
    bottom: -40px;
}

.hero-badge,
.redesign-hero h1,
.redesign-hero p {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--accent-dark);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.16);
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.14);
}

.redesign-hero h1 {
    font-size: 52px;
    line-height: 1.25;
    margin: 0 0 25px;
    color: var(--redesign-dark);
    font-weight: 900;
    letter-spacing: -1px;
}

.redesign-hero p {
    font-size: 20px;
    line-height: 2.15;
    color: var(--redesign-text);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 500;
}

/* Ticker */

.redesign-news {
    max-width: 1200px;
    margin: 0 auto 70px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.redesign-news-title {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 900;
    color: var(--redesign-dark);
    white-space: nowrap;
    padding-left: 28px;
    border-left: 2px solid rgba(var(--accent-rgb), 0.32);
}

.redesign-ticker {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    direction: ltr;
    padding: 18px 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}

.redesign-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: redesignMove 34s linear infinite;
}

.redesign-ticker:hover .redesign-track {
    animation-play-state: paused;
}

.redesign-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0;
    background: transparent;
    border: none;
    color: #1f2937;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.25s ease;
}

.redesign-item:hover {
    transform: translateY(-2px);
    color: var(--accent-dark);
}

.redesign-item span {
    color: inherit;
}

.redesign-item svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@keyframes redesignMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Content */

.redesign-content {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 48px 42px;
    background:
        radial-gradient(circle at 0% 100%, rgba(var(--accent-rgb), 0.07), transparent 44%),
        rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(14px);
}

.redesign-content h2 {
    position: relative;
    font-size: 30px;
    line-height: 1.5;
    margin: 35px 0 18px;
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.4px;
    padding-right: 16px;
}

.redesign-content h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 5px;
    height: 26px;
    border-radius: 999px;
    background: var(--accent);
}

.redesign-content h2:first-child {
    margin-top: 0;
}

.redesign-content p {
    font-size: 18px;
    line-height: 2.25;
    color: var(--redesign-text);
    margin: 0 0 20px;
}

.redesign-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.redesign-content li {
    position: relative;
    font-size: 18px;
    line-height: 2.15;
    color: var(--redesign-text);
    padding-right: 34px;
}

.redesign-content li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 22px;
    text-align: center;
}

/* Pricing */

.redesign-pricing-section {
    max-width: 1250px;
    margin: 0 auto 60px;
}

.redesign-pricing-header {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: right;
}

.redesign-pricing-header span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.14);
}

.redesign-pricing-header span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.14);
}

.redesign-pricing-header h2 {
    font-size: 42px;
    line-height: 1.35;
    margin: 0 0 18px;
    color: var(--redesign-dark);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.redesign-pricing-header p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    line-height: 2;
    color: #475569;
}

.redesign-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.redesign-price-card {
    position: relative;
    background:
        radial-gradient(circle at 0% 100%, rgba(var(--accent-rgb), 0.08), transparent 46%),
        rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 30px;
    padding: 34px 28px;
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
    overflow: hidden;
}

.redesign-price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.10), transparent 42%);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.redesign-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(var(--accent-rgb), 0.45);
}

.redesign-price-card:hover::before {
    opacity: 1;
}

.redesign-price-card.featured {
    background:
        radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.32), transparent 34%),
        linear-gradient(180deg, #3a2a14 0%, #201608 100%);
    color: #ffffff;
    border-color: rgba(var(--accent-rgb), 0.65);
    transform: translateY(-16px);
}

.redesign-price-card.featured:hover {
    transform: translateY(-24px);
    border-color: rgba(var(--accent-rgb), 0.80);
}

.redesign-price-card .popular-badge {
    position: absolute;
    top: 18px;
    left: 22px;
    padding: 8px 18px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.30);
}

.redesign-price-card-head h3 {
    font-size: 26px;
    line-height: 1.45;
    margin: 0 0 14px;
    color: var(--redesign-dark);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.redesign-price-card.featured .redesign-price-card-head h3 {
    color: #ffffff;
    padding-left: 95px;
}

.redesign-price-card-head p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--redesign-muted);
    margin: 0;
    min-height: 60px;
}

.redesign-price-card.featured .redesign-price-card-head p {
    color: #ffe4c2;
}

.redesign-price-box {
    margin: 28px 0;
    padding: 22px;
    background: var(--accent-softer);
    border-radius: 24px;
    border: 1px solid var(--accent-border);
}

.redesign-price-card.featured .redesign-price-box {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.redesign-price-box span {
    display: block;
    font-size: 15px;
    color: var(--redesign-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.redesign-price-card.featured .redesign-price-box span {
    color: #ffe4c2;
}

.redesign-price-box strong {
    display: block;
    font-size: 28px;
    line-height: 1.45;
    color: var(--accent-dark);
    font-weight: 900;
}

.redesign-price-card.featured .redesign-price-box strong {
    color: #ffd79f;
}

.redesign-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.redesign-price-card li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--redesign-text);
}

.redesign-price-card.featured li {
    color: #fff4e5;
}

.redesign-price-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 4px;
    width: 21px;
    height: 21px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 50%;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-weight: 900;
}

.redesign-price-card.featured li::before {
    background: #ffd79f;
    color: #3a2a14;
}

.redesign-pricing-note {
    max-width: 850px;
    margin: 35px auto 0;
    padding: 20px 26px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    font-weight: 500;
}

.redesign-page-actions {
    text-align: center;
}

.redesign-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(var(--accent-rgb), 0.28);
    transition: 0.3s ease;
}

.redesign-back-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(var(--accent-rgb), 0.36);
}

/* Footer connection */

.site-footer {
    background: #fffaf2;
    margin-top: 0;
    border-top: none;
    box-shadow: none;
}

.footer-shell,
.footer-morph-strip,
.footer-morph-inner {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Responsive */

@media (max-width: 1000px) {
    .redesign-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .redesign-price-card.featured {
        transform: none;
    }

    .redesign-price-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .redesign-news {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 50px;
    }

    .redesign-news-title {
        text-align: center;
        padding-left: 0;
        border-left: none;
        font-size: 21px;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .redesign-page {
        padding: 40px 14px;
    }

    .redesign-hero {
        padding: 58px 24px;
        margin-bottom: 40px;
        border-radius: 28px;
    }

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

    .redesign-hero p {
        font-size: 17px;
        line-height: 2.05;
    }

    .hero-badge {
        font-size: 14px;
    }

    .redesign-track {
        gap: 24px;
        animation-duration: 28s;
    }

    .redesign-item {
        font-size: 17px;
        gap: 8px;
    }

    .redesign-item svg {
        width: 26px;
        height: 26px;
    }

    .redesign-content {
        padding: 35px 22px;
        margin-bottom: 60px;
        border-radius: 24px;
    }

    .redesign-content h2 {
        font-size: 25px;
    }

    .redesign-content p,
    .redesign-content li {
        font-size: 16px;
    }

    .redesign-pricing-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .redesign-pricing-header span {
        margin-left: auto;
        margin-right: auto;
    }

    .redesign-pricing-header h2 {
        font-size: 31px;
    }

    .redesign-pricing-header p {
        margin: 0 auto;
        font-size: 16px;
    }

    .redesign-price-card {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .redesign-price-card .popular-badge {
        position: static;
        display: inline-block;
        margin-bottom: 18px;
    }

    .redesign-price-card.featured .redesign-price-card-head h3 {
        padding-left: 0;
    }

    .redesign-price-card-head h3 {
        font-size: 23px;
    }

    .redesign-price-box strong {
        font-size: 24px;
    }

    .redesign-pricing-note {
        font-size: 15px;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .redesign-hero h1 {
        font-size: 31px;
    }

    .redesign-pricing-header h2 {
        font-size: 27px;
    }

    .redesign-price-box {
        padding: 18px;
    }

    .redesign-back-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .redesign-page,
    .redesign-page * {
        scroll-behavior: auto;
    }

    .redesign-track {
        animation: none;
    }

    .redesign-price-card,
    .redesign-back-btn,
    .redesign-item {
        transition: none;
    }
}