/* ============================================
   RESET & BASE
   ============================================ */
#uw-rg-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
place-items: center !important;
}

#uw-rg-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a202c;
    line-height: 1.6;
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

/* ============================================
   BACKGROUND BLOBS
   ============================================ */
#uw-rg-root .uw-rg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: uw-rg-float 12s ease-in-out infinite alternate;
    opacity: 0.5;
}

#uw-rg-root .uw-rg-blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}
#uw-rg-root .uw-rg-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -120px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.30) 0%, transparent 70%);
    animation-delay: 3s;
}
#uw-rg-root .uw-rg-blob-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.25) 0%, transparent 70%);
    animation-delay: 6s;
}
#uw-rg-root .uw-rg-blob-4 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: 5%;
    background: radial-gradient(circle, rgba(221, 214, 254, 0.25) 0%, transparent 70%);
    animation-delay: 2s;
}
#uw-rg-root .uw-rg-blob-5 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 40%;
    background: radial-gradient(circle, rgba(134, 239, 172, 0.20) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes uw-rg-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.12); }
}

/* ============================================
   CONTAINER
   ============================================ */
#uw-rg-root .uw-rg-container {
    position: relative;
    z-index: 1;

    backdrop-filter: blur(20px);
    border-radius: 56px;
    padding: 50px 55px;
    
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
#uw-rg-root h1,
#uw-rg-root h2,
#uw-rg-root h3,
#uw-rg-root h4 {
    font-weight: 700;
    line-height: 1.25;
}
#uw-rg-root h1 {
    font-size: 3.4rem;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
#uw-rg-root h1 .uw-rg-highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#uw-rg-root h2 {
    font-size: 2.4rem;
    color: #0b1e33;
    margin-bottom: 12px;
}
#uw-rg-root h2 .uw-rg-highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#uw-rg-root h3 {
    font-size: 1.35rem;
    color: #0b1e33;
    margin-bottom: 8px;
}
#uw-rg-root p {
    margin-bottom: 16px;
    color: #475569;
    font-size: 1.05rem;
}
#uw-rg-root a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border-bottom: 2px solid transparent;
}
#uw-rg-root a:hover {
    color: #1d4ed8;
    border-bottom-color: #2563eb;
}

/* ============================================
   SECTION TAGS
   ============================================ */
#uw-rg-root .uw-rg-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    color: #1d4ed8;
    padding: 4px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#uw-rg-root .uw-rg-section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 8px;
}
#uw-rg-root .uw-rg-section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    color: #64748b;
    font-size: 1.1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
#uw-rg-root .uw-rg-btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
    letter-spacing: 0.3px;
}
#uw-rg-root .uw-rg-btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.30);
}
#uw-rg-root .uw-rg-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.40);
    border-bottom: none;
    color: #fff;
}
#uw-rg-root .uw-rg-btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}
#uw-rg-root .uw-rg-btn-outline:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    border-bottom: none;
}
#uw-rg-root .uw-rg-btn-white {
    background: #ffffff;
    color: #0b1e33;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
#uw-rg-root .uw-rg-btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border-bottom: none;
    color: #0b1e33;
}

/* ============================================
   HERO SECTION
   ============================================ */
#uw-rg-root .uw-rg-hero {
    padding: 10px 0 50px;
    text-align: center;
}
#uw-rg-root .uw-rg-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    color: #1d4ed8;
    padding: 8px 28px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
#uw-rg-root .uw-rg-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 32px;
}
#uw-rg-root .uw-rg-cta-group {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}
#uw-rg-root .uw-rg-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 48px auto 0;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}
#uw-rg-root .uw-rg-stat .uw-rg-number {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
#uw-rg-root .uw-rg-stat .uw-rg-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ============================================
   FORMULA SECTION
   ============================================ */
#uw-rg-root .uw-rg-formula {
    padding: 40px 0 30px;
}
#uw-rg-root .uw-rg-formula-box {
    background: linear-gradient(145deg, #0b1e33, #1a2a41);
    color: #fff;
    padding: 48px 56px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(11, 30, 51, 0.25);
    position: relative;
    overflow: hidden;
}
#uw-rg-root .uw-rg-formula-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}
#uw-rg-root .uw-rg-formula-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
#uw-rg-root .uw-rg-formula-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}
#uw-rg-root .uw-rg-formula-box h2 {
    color: #fff;
    position: relative;
}
#uw-rg-root .uw-rg-formula-box .uw-rg-formula-desc {
    color: #cbd5e1;
    position: relative;
}
#uw-rg-root .uw-rg-formula-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #60a5fa;
    margin: 24px 0 28px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 28px;
    border-radius: 16px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}
#uw-rg-root .uw-rg-levers-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
    position: relative;
}
#uw-rg-root .uw-rg-lever-mini {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}
#uw-rg-root .uw-rg-lever-mini:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}
#uw-rg-root .uw-rg-lever-mini .uw-rg-lever-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}
#uw-rg-root .uw-rg-lever-mini h4 {
    color: #93c5fd;
    font-size: 1rem;
}
#uw-rg-root .uw-rg-lever-mini p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   FEATURE VISUAL SECTION
   ============================================ */
#uw-rg-root .uw-rg-feature-visual {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-feature-header {
    text-align: center;
    margin-bottom: 40px;
}
#uw-rg-root .uw-rg-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
#uw-rg-root .uw-rg-feature-item {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
#uw-rg-root .uw-rg-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#uw-rg-root .uw-rg-feature-item:hover::before {
    opacity: 1;
}
#uw-rg-root .uw-rg-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}
#uw-rg-root .uw-rg-feature-icon {
    font-size: 3rem;
    margin-bottom: 14px;
    display: block;
}
#uw-rg-root .uw-rg-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0b1e33;
}
#uw-rg-root .uw-rg-feature-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}
#uw-rg-root .uw-rg-feature-bar {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 4px;
    margin: 16px auto 0;
    opacity: 0.5;
}

/* ============================================
   GROWTH LEVERS SECTION
   ============================================ */
#uw-rg-root .uw-rg-levers {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-levers-header {
    text-align: center;
    margin-bottom: 40px;
}
#uw-rg-root .uw-rg-levers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
#uw-rg-root .uw-rg-lever-card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
#uw-rg-root .uw-rg-lever-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #7c3aed);
    opacity: 0.6;
}
#uw-rg-root .uw-rg-lever-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}
#uw-rg-root .uw-rg-lever-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    user-select: none;
}
#uw-rg-root .uw-rg-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    display: block;
}
#uw-rg-root .uw-rg-lever-card p {
    color: #64748b;
    font-size: 0.98rem;
    margin-bottom: 14px;
}
#uw-rg-root .uw-rg-lever-card ul {
    list-style: none;
    padding: 0;
}
#uw-rg-root .uw-rg-lever-card ul li {
    padding: 5px 0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
#uw-rg-root .uw-rg-lever-card ul li::before {
    content: "◆";
    color: #2563eb;
    font-weight: 400;
    font-size: 0.6rem;
}
#uw-rg-root .uw-rg-link-group {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}
#uw-rg-root .uw-rg-link-group a {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
#uw-rg-root .uw-rg-calculator {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-calc-wrapper {
    background: #ffffff;
    border-radius: 32px;
    padding: 48px 50px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
#uw-rg-root .uw-rg-calc-header {
    text-align: center;
    margin-bottom: 28px;
}
#uw-rg-root .uw-rg-calc-wrapper > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 24px;
}
#uw-rg-root .uw-rg-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
#uw-rg-root .uw-rg-calc-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 6px;
}
#uw-rg-root .uw-rg-calc-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.25s ease;
    background: #f8fafc;
    font-weight: 500;
}
#uw-rg-root .uw-rg-calc-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
    background: #ffffff;
}
#uw-rg-root .uw-rg-calc-result {
    background: linear-gradient(145deg, #0b1e33, #1a2a41);
    color: #fff;
    padding: 32px 40px;
    border-radius: 20px;
    margin-top: 24px;
    text-align: center;
}
#uw-rg-root .uw-rg-calc-big {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    letter-spacing: -0.02em;
    margin: 4px 0;
}
#uw-rg-root .uw-rg-calc-sub {
    color: #94a3b8;
    font-size: 0.95rem;
}
#uw-rg-root .uw-rg-calc-growth-info {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 0.95rem;
}
#uw-rg-root .uw-rg-calc-highlight {
    color: #60a5fa;
    font-weight: 700;
}
#uw-rg-root .uw-rg-calc-growth {
    color: #4ade80;
    font-weight: 700;
}
#uw-rg-root .uw-rg-calc-note {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 16px;
}

/* ============================================
   PERFORMANCE SECTION
   ============================================ */
#uw-rg-root .uw-rg-performance {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-performance-header {
    text-align: center;
    margin-bottom: 40px;
}
#uw-rg-root .uw-rg-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 8px;
}
#uw-rg-root .uw-rg-step {
    background: #ffffff;
    padding: 28px 18px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
display: grid;
}
#uw-rg-root .uw-rg-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(37, 99, 235, 0.12);
}
#uw-rg-root .uw-rg-step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}
#uw-rg-root .uw-rg-step-num {
width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
  display: grid;
  place-items: center;
}
#uw-rg-root .uw-rg-step h4 {
    font-size: 1rem;
    color: #0b1e33;
}
#uw-rg-root .uw-rg-step p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 0;
}
#uw-rg-root .uw-rg-performance-cta {
    text-align: center;
    margin-top: 36px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
#uw-rg-root .uw-rg-resources {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-resources-header {
    text-align: center;
    margin-bottom: 40px;
}
#uw-rg-root .uw-rg-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
#uw-rg-root .uw-rg-resource-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#uw-rg-root .uw-rg-resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(37, 99, 235, 0.12);
}
#uw-rg-root .uw-rg-resource-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}
#uw-rg-root .uw-rg-resource-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #0b1e33;
}
#uw-rg-root .uw-rg-resource-card p {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 14px;
}
#uw-rg-root .uw-rg-resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
#uw-rg-root .uw-rg-resource-links a {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#uw-rg-root .uw-rg-faq {
    padding: 50px 0 30px;
}
#uw-rg-root .uw-rg-faq-header {
    text-align: center;
    margin-bottom: 40px;
}
#uw-rg-root .uw-rg-faq-list {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
#uw-rg-root .uw-rg-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 28px;
    transition: background 0.2s ease;
}
#uw-rg-root .uw-rg-faq-item:last-child {
    border-bottom: none;
}
#uw-rg-root .uw-rg-faq-item:hover {
    background: #f8fafc;
}
#uw-rg-root .uw-rg-faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: #0b1e33;
    font-weight: 600;
}
#uw-rg-root .uw-rg-faq-toggle {
    color: #2563eb;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
#uw-rg-root .uw-rg-faq-answer {
    margin-top: 10px;
    color: #64748b;
    display: none;
    padding-right: 10px;
}
#uw-rg-root .uw-rg-faq-item.active .uw-rg-faq-answer {
    display: block;
}
#uw-rg-root .uw-rg-faq-item.active .uw-rg-faq-toggle {
    transform: rotate(180deg);
}

/* ============================================
   CTA SPLIT SECTION
   ============================================ */
#uw-rg-root .uw-rg-cta-split {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, #0b1e33, #1a2a41);
    border-radius: 32px;
    padding: 48px 50px;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(11, 30, 51, 0.25);
}

/* CTA Left */
#uw-rg-root .uw-rg-cta-left {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#uw-rg-root .uw-rg-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    color: #93c5fd;
    padding: 4px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    align-self: flex-start;
}
#uw-rg-root .uw-rg-cta-left h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 12px;
}
#uw-rg-root .uw-rg-cta-left h2 .uw-rg-highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#uw-rg-root .uw-rg-cta-left p {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 24px;
}
#uw-rg-root .uw-rg-cta-left .uw-rg-btn-white {
    background: #ffffff;
    color: #0b1e33;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
}
#uw-rg-root .uw-rg-cta-left .uw-rg-btn-white:hover {
    background: #f0f4ff;
    color: #0b1e33;
}
#uw-rg-root .uw-rg-cta-links {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #94a3b8;
}
#uw-rg-root .uw-rg-cta-links a {
    color: #93c5fd;
}
#uw-rg-root .uw-rg-cta-links a:hover {
    color: #bfdbfe;
}

/* CTA Right - Form */
#uw-rg-root .uw-rg-cta-right {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}
#uw-rg-root .uw-rg-cta-form-wrapper {
    width: 100%;
}
#uw-rg-root .uw-rg-cta-form-label {
    color: #93c5fd;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
#uw-rg-root .uw-rg-footer {
    padding: 30px 0 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 20px;
}
#uw-rg-root .uw-rg-footer p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0;
}
#uw-rg-root .uw-rg-footer a {
    color: #94a3b8;
}
#uw-rg-root .uw-rg-footer a:hover {
    color: #2563eb;
}

/* ============================================
   ANIMATION (ظهور تدریجی)
   ============================================ */
#uw-rg-root .uw-rg-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
#uw-rg-root .uw-rg-animate.uw-rg-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    #uw-rg-root .uw-rg-container { padding: 40px 35px; }
    #uw-rg-root h1 { font-size: 2.8rem; }
    #uw-rg-root h2 { font-size: 2rem; }
    #uw-rg-root .uw-rg-feature-grid { grid-template-columns: 1fr 1fr; }
    #uw-rg-root .uw-rg-resources-grid { grid-template-columns: 1fr 1fr; }
    #uw-rg-root .uw-rg-cta-split { grid-template-columns: 1fr; padding: 36px 32px; }
}
@media (max-width: 850px) {
    #uw-rg-root .uw-rg-container { padding: 30px 24px; border-radius: 40px; }
    #uw-rg-root h1 { font-size: 2.4rem; }
    #uw-rg-root h2 { font-size: 1.7rem; }
    #uw-rg-root .uw-rg-levers-mini { grid-template-columns: 1fr 1fr; }
    #uw-rg-root .uw-rg-levers-grid { grid-template-columns: 1fr; }
    #uw-rg-root .uw-rg-steps { grid-template-columns: 1fr 1fr 1fr; }
    #uw-rg-root .uw-rg-calc-grid { grid-template-columns: 1fr; }
    #uw-rg-root .uw-rg-calc-wrapper { padding: 32px 24px; }
    #uw-rg-root .uw-rg-formula-box { padding: 36px 28px; }
    #uw-rg-root .uw-rg-stats { grid-template-columns: 1fr 1fr 1fr; }
    #uw-rg-root .uw-rg-resources-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    #uw-rg-root { margin: 20px auto; padding: 0 12px; }
    #uw-rg-root .uw-rg-container { padding: 24px 18px; border-radius: 32px; }
    #uw-rg-root h1 { font-size: 1.8rem; }
    #uw-rg-root h2 { font-size: 1.4rem; }
    #uw-rg-root .uw-rg-levers-mini { grid-template-columns: 1fr; }
    #uw-rg-root .uw-rg-feature-grid { grid-template-columns: 1fr; }
    #uw-rg-root .uw-rg-steps { grid-template-columns: 1fr 1fr; }
    #uw-rg-root .uw-rg-stats { grid-template-columns: 1fr; gap: 12px; }
    #uw-rg-root .uw-rg-cta-group { flex-direction: column; align-items: center; }
    #uw-rg-root .uw-rg-btn { width: 100%; text-align: center; padding: 14px 24px; }
    #uw-rg-root .uw-rg-cta-split { padding: 28px 20px; }
    #uw-rg-root .uw-rg-cta-left h2 { font-size: 1.5rem; }
    #uw-rg-root .uw-rg-cta-right { padding: 24px 16px; }
    #uw-rg-root .uw-rg-formula-display { font-size: 1.3rem; padding: 12px 16px; }
    #uw-rg-root .uw-rg-calc-result { padding: 24px 20px; }
    #uw-rg-root .uw-rg-calc-big { font-size: 2rem; }
    #uw-rg-root .uw-rg-faq-item { padding: 16px 18px; }
}
.wccs-contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

h1, h2, h3, h4 {
  background: linear-gradient(135deg, #e322f4, #3b82f6, #2563eb)!important;
    background-clip: border-box;
  background-clip: text !important;
  color: transparent !important;
}