/* Renew TSS — Bootstrap custom styles (Variation 4) 

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");*/

/* Font Face Definitions */
@font-face {
  font-family: "Roboto Bold";
  src: url("../fonts/roboto/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Roboto Regular";
  src: url("../fonts/roboto/Roboto-Regular.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Roboto Medium";
  src: url("../fonts/roboto/Roboto-Medium.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Roboto Light";
  src: url("../fonts/roboto/Roboto-Light.ttf");
  font-weight: normal;
}

:root {
  --navy: #1a2847;
 /*--azure: #3b7aed;*/
 --azure:#006ea6;
  --azure-soft: rgba(59, 122, 237, 0.1);
  --cloud: #fafbfd;
  --sky: #d6e8ff;
  --sky-soft: #eef4fc;
  --butter: #f0d890;
  --butter-soft: #faf6e8;
  --navy-muted: rgba(26, 40, 71, 0.65);
  --navy-faint: rgba(26, 40, 71, 0.45);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;
  --font-display: "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --color-black: #000000;
  --color-shadded-black: #231f20;
  --color-dark-gray: #555555;
  --color-gray: #6c6c70;
  --color-light-gray: #8e8e93;
  --color-off-white: #ebecf0;
  --color-white: #ffffff;
  --color-blue: #2848c1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.v4 {
  font-family: var(--font-body);
  background-color: var(--cloud);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

body.v4 ::selection {
  background-color: rgba(59, 122, 237, 0.15);
}

.font-display {
  font-family: var(--font-display);
}

.text-azure {
  color: var(--color-light-blue) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-navy-muted {
  color: var(--navy-muted) !important;
}

.text-navy-faint {
  color: var(--navy-faint) !important;
}

.bg-cloud {
  background-color: var(--cloud) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-azure {
  background-color: var(--azure) !important;
}

.bg-sky-soft {
  background-color: var(--sky-soft) !important;
}

.bg-butter {
  background-color: var(--butter) !important;
}

.rounded-3xl {
  border-radius: var(--radius-3xl) !important;
}

.rounded-2xl {
  border-radius: var(--radius-2xl) !important;
}

.rounded-xl {
  border-radius: var(--radius-xl) !important;
}

/* Variation switcher */
.variation-switcher {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1060;
}

.variation-switcher .nav-pills {
  background: rgba(250, 251, 253, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 40, 71, 0.1);
  border-radius: 999px;
  padding: 0.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.variation-switcher .nav-link {
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(26, 40, 71, 0.6);
}

.variation-switcher .nav-link.active-v4 {
  background-color: var(--azure);
  color: var(--cloud);
}

.variation-switcher .nav-link:not(.active-v4):hover {
  color: var(--navy);
}

/* Navigation */
.site-nav-v4 {
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(26, 40, 71, 0.05);
  background: rgba(250, 251, 253, 0.8);
  backdrop-filter: blur(12px);
}

.site-nav-v4 .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.nav-link-v4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 40, 71, 0.6);
  text-decoration: none;
}

.nav-link-v4:hover {
  color: var(--navy);
}

.btn-azure {
  background-color: var(--azure);
  color: var(--cloud);
  border: 1px solid var(--azure);
  font-weight: 600;
  border-radius: var(--radius-lg);
}

.btn-azure:hover {
  background-color: #2f6fd6;
  color: var(--cloud);
  border-color: #2f6fd6;
}

.btn-outline-v4 {
  border: 1px solid rgba(26, 40, 71, 0.15);
  color: rgba(26, 40, 71, 0.75);
  background: var(--cloud);
  font-weight: 500;
  border-radius: var(--radius-xl);
}

.btn-outline-v4:hover {
  background: var(--sky-soft);
  color: var(--navy);
  border-color: rgba(26, 40, 71, 0.15);
}

.btn-butter {
  background-color: var(--butter);
  color: var(--navy);
  border: 1px solid var(--butter);
  font-weight: 600;
  border-radius: var(--radius-xl);
}

.btn-butter:hover {
  background-color: #e8cc70;
  color: var(--navy);
  border-color: #e8cc70;
}

.btn-outline-cloud {
  border: 1px solid rgba(250, 251, 253, 0.2);
  color: var(--cloud);
  background: transparent;
  font-weight: 500;
  border-radius: var(--radius-xl);
}

.btn-outline-cloud:hover {
  background: rgba(250, 251, 253, 0.1);
  color: var(--cloud);
  border-color: rgba(250, 251, 253, 0.2);
}

/* Hero */
.hero-v4 {
  position: relative;
  overflow: hidden;
}

.hero-v4 .hero-blob-right {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(214, 232, 255, 0.4);
  filter: blur(64px);
  pointer-events: none;
}

.hero-v4 .hero-blob-left {
  position: absolute;
  bottom: -10rem;
  left: -6rem;
  width: 45rem;
  height: 35rem;
  border-radius: 50%;
  background: rgba(240, 216, 144, 0.4);
  filter: blur(64px);
  pointer-events: none;
}

.hero-badge-v4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(59, 122, 237, 0.2);
  background: rgba(59, 122, 237, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--azure);
}

.hero-title-v4 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-trust {
  font-size: 0.875rem;
  color: rgba(26, 40, 71, 0.55);
}

/* TSS icon grid */
.tss-panel {
  border-radius: 2rem;
  border: 1px solid rgba(26, 40, 71, 0.05);
  background: linear-gradient(to bottom right, var(--sky-soft), var(--butter-soft));
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(26, 40, 71, 0.05);
}

.tss-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-2xl);
  background: var(--color-light-blue);
  color: var(--cloud);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.tss-panel-header .label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(250, 251, 253, 0.6);
  margin-bottom: 0;
}

.tss-panel-header .title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0;
}

.tss-icon-check {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--butter);
  color: var(--navy);
}

.tss-icon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-2xl);
  background: var(--cloud);
  padding: 1.25rem 0.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(26, 40, 71, 0.05);
  border: 1px solid rgba(26, 40, 71, 0.05);
  transition: transform 0.2s;
  height: 100%;
}

.tss-icon-card:hover {
  transform: translateY(-4px);
}

.tss-icon-card .tag {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  border-radius: 999px;
  background: var(--butter);
  padding: 0.125rem 0.375rem;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.tss-icon-card .icon-wrap {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background: rgba(59, 122, 237, 0.1);
  color: var(--azure);
  transition: background-color 0.2s, color 0.2s;
}

.tss-icon-card:hover .icon-wrap {
  background:  var(--color-light-blue);
  color: var(--cloud);
}

.tss-icon-card .label-text {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(26, 40, 71, 0.7);
}

.tss-float-stat {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  background: var(--cloud);
  padding: 0.875rem 1.25rem;
  box-shadow: 0 20px 40px rgba(26, 40, 71, 0.08);
  border: 1px solid rgba(26, 40, 71, 0.05);
}

.tss-float-stat .stat-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--butter);
  color: var(--navy);
}

/* Ticker */
.ticker-v4 {
  border-top: 1px solid rgba(26, 40, 71, 0.05);
  border-bottom: 1px solid rgba(26, 40, 71, 0.05);
  background: var(--navy);
  color: var(--cloud);
  padding: 0.75rem 0;
}

.ticker-v4 .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 251, 253, 0.7);
}

.ticker-v4 .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--butter);
}

/* Section labels */
.section-label-v4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--azure);
}

.section-title-v4 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Why renew cards */
.why-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(26, 40, 71, 10%);
  background: var(--cloud);
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.2s;
}

.why-card:hover {
  box-shadow: 0 20px 40px rgba(26, 40, 71, 0.05);
}

.why-card .card-num {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(26, 40, 71, 10%);
  line-height: 1;
}

.why-card .icon-box {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-2xl);
  /*
  background: var(--azure);
  color: var(--cloud);*/
}

.why-card .icon-box img{
	max-height: 50px;
}

.why-card .tag-pill {
  display: inline-block;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: var(--sky);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azure);
}

.why-card ul {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.why-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--navy-muted);
  margin-bottom: 0.625rem;
}

.why-card li i {
  color: var(--azure);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Quiz */
.quiz-progress {
  display: flex;
  gap: 0.5rem;
}

.quiz-progress .bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(26, 40, 71, 0.1);
}

.quiz-progress .bar.active {
  background: var(--azure);
}

.quiz-step-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(26, 40, 71, 0.5);
}

.quiz-card {
  border-radius: 2rem;
  border: 1px solid rgba(26, 40, 71, 0.05);
  background: var(--cloud);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(26, 40, 71, 0.05);
}

@media (min-width: 768px) {
  .quiz-card {
    padding: 2.25rem;
  }
}

.quiz-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(26, 40, 71, 0.1);
  background: var(--cloud);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 40, 71, 0.8);
  transition: border-color 0.2s, background-color 0.2s;
}

.quiz-option:hover {
  border-color: var(--azure);
  background: rgba(59, 122, 237, 0.05);
}

.quiz-option i {
  color: rgba(26, 40, 71, 0.3);
  transition: color 0.2s;
}

.quiz-option:hover i {
  color: var(--azure);
}

.quiz-result-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-2xl);
  background: rgba(59, 122, 237, 0.1);
  color: var(--azure);
}

.quiz-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-xl);
  background: var(--sky-soft);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 40, 71, 0.8);
}

.quiz-result-item i {
  color: var(--azure);
  flex-shrink: 0;
}

/* Pricing v4 */
.pricing-toggle-v4 {
  display: inline-flex;
  gap: 0.25rem;
  border: 1px solid rgba(26, 40, 71, 0.1);
  background: var(--sky-soft);
  border-radius: 999px;
  padding: 0.25rem;
}

.pricing-toggle-v4 .btn-term {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 40, 71, 0.6);
  transition: all 0.2s;
}

.pricing-toggle-v4 .btn-term.active {
  background: var(--azure);
  color: var(--cloud);
}

.pricing-toggle-v4 .btn-term:hover:not(.active) {
  color: var(--navy);
}

.save-badge-v4 {
  border-radius: 999px;
  background: var(--butter);
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.pricing-card-v4 {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-3xl);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(26, 40, 71, 0.05);
  background: var(--cloud);
  color: var(--navy);
}

.pricing-card-v4.recommended {
  background: var(--navy);
  color: var(--cloud);
  box-shadow: 0 25px 50px rgba(26, 40, 71, 0.2);
  border: none;
}

@media (min-width: 768px) {
  .pricing-card-v4.recommended {
    margin-top: -1rem;
  }
}

.popular-badge-v4 {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--butter);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.plan-audience-v4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 40, 71, 0.4);
}

.pricing-card-v4.recommended .plan-audience-v4 {
  color: rgba(250, 251, 253, 0.5);
}

.plan-price-v4 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.plan-strike-v4 {
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: rgba(26, 40, 71, 0.35);
}

.pricing-card-v4.recommended .plan-strike-v4 {
  color: rgba(250, 251, 253, 0.4);
}

.plan-feature-v4 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.plan-feature-v4 i {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--azure);
}

.pricing-card-v4.recommended .plan-feature-v4 {
  color: rgba(250, 251, 253, 0.8);
}

.pricing-card-v4.recommended .plan-feature-v4 i {
  color: var(--butter);
}

.shared-features-v4 {
  border-radius: var(--radius-3xl);
  background: var(--sky-soft);
  padding: 2rem;
}

.shared-feature-v4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(26, 40, 71, 0.7);
  margin-bottom: 0.75rem;
}

.shared-feature-v4 i {
  color: var(--azure);
  flex-shrink: 0;
}

/* FAQ v4 — native details */
.faq-details {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(26, 40, 71, 0.05);
  background: var(--cloud);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-details summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}

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

.faq-details .faq-toggle {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(26, 40, 71, 0.15);
  color: rgba(26, 40, 71, 0.6);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-details[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-details .faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26, 40, 71, 0.6);
}

/* Final CTA */
.final-cta-v4 {
  border-radius: 2.5rem;
  background: var(--navy);
  color: var(--cloud);
  padding: 5rem 1.5rem;
  text-align: center;
}

.final-cta-v4 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-v4 p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(250, 251, 253, 0.65);
}

/* Footer */
.site-footer-v4 {
  border-top: 1px solid rgba(26, 40, 71, 0.1);
  background: var(--cloud);
  padding: 2.5rem 0 5rem;
  font-size: 0.875rem;
  color: rgba(26, 40, 71, 0.5);
}

.site-footer-v4 a {
  color: rgba(26, 40, 71, 0.5);
  text-decoration: none;
}

.site-footer-v4 a:hover {
  color: var(--navy);
}

/* Hover lift */
.hover-lift {
  transition: transform 0.2s;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

.border-radius10 {
    border-radius: 10px;
}
.bloggerImg {
    width: 80%;
}
.skew-bg a {
    transform: none !important;
    border: none;
    border-radius: 5px;
	 background-color: #fcaf1b !important;
}
.skew-bg-yellow::before {
    background-color: #fcaf1b !important;
}
.skew-bg {
    position: relative;
    display: inline-block;
    padding: 10px 20px !important;
}

.arrow-animation {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 0.3s ease-in-out;
}
.text-dark {
    color: var(--color-shadded-black) !important;
}
.validityTabContainer .active {
    background-color: #006ea6 !important;
}
.durationTabTSS {color:#000000; }