
:root {
    --st-primary: #1a4cff;
    --st-primary-dark: #0249da;
    --st-accent: #f4a000;
    --st-border: #1a4cff14;
    --st-bg: #f8fbff;
    --st-text-dark: #000;
    --st-shadow:0 10px 20px rgba(244, 160, 0, 0.2);
    --st-text-light: #111111cc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--st-text-dark);
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color:  #111111cc;
    font-family: "Poppins", sans-serif !important;
}

.st-header {
    background: #fff;
    box-shadow: 0 10px 40px rgba(15, 99, 255, 0.08);
    position: relative;
    /* padding: 24px 0; */
}

.st-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--st-accent);
}

.st-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.st-logo-icon {
    width: 150px;
    height: auto;
}
/* Enhanced My Account Button */
.premium-account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0057FC 0%, #2991d0 50%, #0057FC 100%);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(0, 87, 252, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  
  .premium-account-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f4a000 0%, #ffb347 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.45s ease;
    z-index: -1;
    border-radius: inherit;
  }
  
  .premium-account-btn:hover::before {
    transform: scaleX(1);
  
  }
  
  .premium-account-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    color: inherit;
  }
  
  .premium-account-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
  }
  
  .premium-account-btn:hover {
    transform: translateY(-2px);
    border-color: #f4a000;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(244, 160, 0, 0.35);
  }
  
  .premium-account-btn:hover i {
    transform: rotate(15deg) scale(1.1);
    color: #ffffff;
  }
  
  .premium-account-btn:active {
    transform: translateY(-1px) scale(0.98);
  }
  /* Enhanced Language Switcher */
.premium-language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid rgba(244, 160, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  
  .premium-language-switcher:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f0 100%);
  }
  .primary-premium-account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f4a000 0%, #ffb347 100%);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--st-shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .primary-premium-account-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.45s ease;
    z-index: -1;
    border-radius: inherit;
  }
  
  .primary-premium-account-btn:hover::before {
    transform: scaleX(1);
  
  }
  
  .primary-premium-account-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    color: inherit;
  }
  
  .primary-premium-account-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
  }
  
  .primary-premium-account-btn:hover {
    transform: translateY(-2px);
    border-color: var(--st-bg);
    color: #000;
    box-shadow: 0 10px 25px rgba(244, 160, 0, 0.35);
  }
  
  .primary-premium-account-btn:hover i {
    transform: rotate(15deg) scale(1.1);
    color: #000;
  }
  
  .primary-premium-account-btn:active {
    transform: translateY(-1px) scale(0.98);
  }
  .lang-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .lang-btn:hover {
    color: #f4a000;
    background: rgba(244, 160, 0, 0.1);
  }
  
  .lang-btn.active {
    color: #f4a000;
    background: rgba(244, 160, 0, 0.15);
  }
  
  .lang-separator {
    color: #ddd;
    font-weight: 300;
  }
  
.st-logo-text {
    line-height: 1.2;
}

.st-logo-title {
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-primary {
    color: var(--st-primary);
}

.text-accent {
    color: var(--st-accent);
}



@media (max-width: 768px) {
    .hero-actions{
        align-items: center;
    }
    .btn-cta.secondary{
        display: none;
    }
    .premium-account-btn{
        padding: 7px 10px;
        display: block;
    }
    .premium-language-switcher{
        padding: 7px 10px;
        display: block;
    }
    .st-header__content {
        align-items: center;
    }

  
    .st-btn-account {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Banner */
.hero-banner {
    background:
        linear-gradient(145deg, rgba(0, 10, 40, 0.8), rgba(0, 30, 90, 0.75)),
        url('banner.jpg') center/cover no-repeat;
    color: #f0f4ff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgb(255 255 255 / 8%);
    top: -60px;
    right: -80px;
    /* filter: blur(40px); */
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(244, 160, 0, 0.30);
    color: #f4a000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin: 24px 0 20px;
    color: #fdfdfd;
    font-weight: 700;
}

.hero-content .highlight {
    color: var(--st-accent);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 36px;
    /* max-width: 540px; */
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta.primary {
    background: linear-gradient(120deg, #ffba3a, #ff8a00);
    color: #0b0f1f;
    box-shadow: 0 12px 35px rgba(255, 160, 0, 0.35);
}

.btn-cta.primary i {
    font-size: 1.2rem;
}

.btn-cta.secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f6f8ff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    font-weight: 500;
    color: rgba(240, 244, 255, 0.85);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i {
    color: var(--st-accent);
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-cta {
        justify-content: center;
        width: 100%;
    }
}

/* Trust Section */
.trust-section {
    padding: 90px 0 110px;
    color: var(--st-text-dark);
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-heading h2 span {
    color: var(--st-accent);
}

.section-heading p {
    color: var(--st-text-light);
    line-height: 1.6;
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(320px, 1.35fr);
    gap: 32px;
}

.trust-card {
    border-radius: 26px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-card.problem-card {
    background: linear-gradient(120deg, #f7fbff, #005af417);
}

.trust-card.solution-card {
    background: linear-gradient(120deg, #f7fbff, #f4a00033);
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.problem-card h3 {
    color: var(--st-text-dark);
}

.solution-card h3 {
    color: var(--st-accent);
}

.card-icon {
    position: absolute;
    top: 10px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f4a000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

.problem-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #111;
    font-weight: 500;
}

.problem-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card ul span {
    color: red;
    font-size: 25px;
    font-weight: 700;
}

.solution-card p {
    color: var(--st-text-light);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 14px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.feature-grid span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #f4a0004f;
    background: rgba(255, 255, 255, 0.02);
    color: #111;
    font-weight: 500;
}

.feature-grid i {
    color: var(--st-accent);
    font-size: 25px;
}
.problem-card p{
    font-size: 14px;
    color: var(--st-text-light);
}
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        order: 2;
    }

    .problem-card {
        order: 1;
    }
}

@media (max-width: 768px) {
    .st-logo-icon{
        width: 105px;
    }
    .trust-card {
        padding: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features-section {
    color: var(--st-text-dark);
}

.features-heading {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.features-heading h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.features-heading p {
    color: var(--st-text-light);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 20px;
}

.feature-box {
    background:radial-gradient(circle at top right, #0057fc30, transparent 60%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid rgb(26 76 255 / 13%);
    box-shadow: 0 10px 20px rgba(244, 160, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, #ffa700a1, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--st-accent), #ffcf62);
    color: #0a1026;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.feature-box p {
    margin: 0;
    color: #111;
    line-height: 1.5;
    font-size: 14px;
}


/* Insights Section */
.insights-section {
    background: #ffffff;
    padding: 90px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.insight-card {
    background: #f3f7ff;
    border-radius: 24px;
    padding: 32px;
    box-shadow:0 10px 20px rgba(244, 160, 0, 0.2);
    border: 1px solid rgba(4, 16, 56, 0.05);
}

.features-card {
    background: radial-gradient(circle at top, #ffffff 0%, #f1f7ff 55%, #edf4ff 100%);
}


.checklist {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1rem;
    color: #203052;
    font-weight: 500;
}

.checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.checklist i {
    color: #1bc47d;
    font-size: 1.4rem;
}

.info-stack .info-row + .info-row {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #005af42e;
}

.info-row h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--st-text-dark);
}

.info-row p {
    margin: 0;
    color: var(--st-text-light);
    line-height: 1.6;
}

.ideal-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ideal-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ideal-pill {
    background:rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #f4a0004f;
    font-weight: 500;
    color: #111;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ideal-pill i {
    font-size: 25px;
    color: var(--st-accent);
}

@media (max-width: 540px) {
    .ideal-row {
        grid-template-columns: 1fr;
    }
}

.closing-cta .cta-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #0057FC, rgba(0, 87, 252, 0.05));
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(244, 160, 0, 0.2);
}

.cta-note i {
    font-size: 2rem;
    color: var(--st-accent);
}

.cta-note strong {
    display: block;
    color: #fff;
}

.cta-note span {
    color: #fff;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background: #fefefe;
}

.pricing-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.pricing-heading h2 {
    margin: 16px 0 10px;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--st-text-dark);
}

.pricing-heading p {
    color: var(--st-text-light);
    margin: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(13, 24, 58, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.pricing-card .plan-tag {
    background: var(--st-accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: fit-content;
}

.plan-kicker {
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #293456;
}

.plan-subtext {
    margin: 0;
    color: var(--st-text-light);
}

.plan-subtext.bold {
    font-weight: 600;
    color: #111;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #080f2b;
}

.price-cycle {
    color: var(--st-text-light);
    font-weight: 500;
}

.plan-features-title {
    font-weight: 600;
    color: #0d142a;
    margin-top: 8px;
}

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.plan-feature-list li {
    display: flex;
    gap: 10px;
}

.plan-feature-list i {
    color: var(--st-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.pricing-cta {
    text-decoration: none;
    width: 100%;
    border-radius: 999px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0057FC 0%, #2991d0 50%, #0057FC 100%);
    color: #fff;
    border: none;
    justify-content: center;
    text-align: center;
    transition: background 0.3s 
ease;
}


.tax-note {
    font-size: 0.85rem;
    color: var(--st-text-light);
    margin: 0;
    text-align: center;
}

.featured-card {
    border: 2px solid var(--st-accent);
    box-shadow: 0 25px 50px rgba(244, 160, 0, 0.2);
}

/* Footer */
.footer-bottom {
    background: #f5f6fa;
    color: var(--st-text-dark);
    padding: 40px 0;
    margin-top: 40px;
    font-size: 0.95rem;
}

.footer-bottom .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom .copyright {
    flex: 1 1 280px;
    line-height: 1.6;
}

.footer-bottom .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-bottom .menu a {
    color: var(--st-text-dark);
    text-decoration: none;
    font-weight: 500;
}



.footer-bottom i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom .inner {
        flex-direction: column;
    }

    .footer-bottom .menu ul {
        justify-content: center;
    }
}





.comparison-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.comparison-table th {
    font-weight: 600;
    font-size: 18px;
    border: none;
}

.comparison-table thead th {
    background: linear-gradient(120deg, #f7fbff, #005af417);
}

.comparison-table tbody th {
     background: linear-gradient(120deg, #f4a00033, #f7fbff);
}

.comparison-table td,
.comparison-table th {
    padding: 15px;
}

.comparison-table i {
    font-size: 20px;
}
.comparison-table {
    background: #f3f7ff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 20px rgba(244, 160, 0, 0.2);
    border: 1px solid rgba(4, 16, 56, 0.05);
}


.comparison-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.comparison-table th {
    font-weight: 600;
    font-size: 18px;
    border: none;
}

.comparison-table thead th {
    background: linear-gradient(120deg, #f7fbff, #005af417);
}

.comparison-table tbody th {
     background: linear-gradient(120deg, #f4a00033, #f7fbff);
}

.comparison-table td,
.comparison-table th {
    padding: 15px;
}

.comparison-table i {
    font-size: 20px;
}
.comparison-table {
    background: #f3f7ff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 20px rgba(244, 160, 0, 0.2);
    border: 1px solid rgba(4, 16, 56, 0.05);
}