@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* tc-scoped:tc-wp-content-root */

.tc-wp-content-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-content-root img,
.tc-wp-content-root video,
.tc-wp-content-root svg,
.tc-wp-content-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-content-root .font-content-section-wrapper{
  --fc-bg-white: #fff;
  --fc-bg-soft: #f0f7ff;
  --fc-text: #172033;
  --fc-muted: #5e6b82;
  --fc-border: rgba(102, 126, 234, 0.16);
  --fc-border-strong: rgba(118, 75, 162, 0.22);
  --fc-accent: #667eea;
  --fc-accent-deep: #764ba2;
  --fc-card-radius: 10px;
  --fc-shadow: 0 12px 30px rgba(25, 35, 65, 0.08);
  --fc-shadow-hover: 0 18px 44px rgba(25, 35, 65, 0.13);
  color: var(--fc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}.tc-wp-content-root .font-content-section-wrapper *{
  box-sizing: border-box;
}.tc-wp-content-root .font-content-section-wrapper .fc-section{
  width: 100%;
  padding: 72px 18px;
  overflow: hidden;
}.tc-wp-content-root .font-content-section-wrapper .fc-section-white{
  background: #fff;
}.tc-wp-content-root .font-content-section-wrapper .fc-section-blue{
  background: #f0f7ff;
}.tc-wp-content-root .font-content-section-wrapper .fc-container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}.tc-wp-content-root .font-content-section-wrapper .fc-heading{
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--fc-text);
}.tc-wp-content-root .font-content-section-wrapper .gradient-keyword{
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}.tc-wp-content-root .font-content-section-wrapper .fc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}.tc-wp-content-root .font-content-section-wrapper .fc-card{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--fc-border);
  position: relative;
  overflow: hidden;
}.tc-wp-content-root .font-content-section-wrapper .fc-card h3{
  margin: 0;
  color: var(--fc-text);
  font-size: 1.03rem;
  line-height: 1.3;
  letter-spacing: 0;
}.tc-wp-content-root .font-content-section-wrapper .fc-card p{
  margin: 10px 0 0;
  color: var(--fc-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}.tc-wp-content-root .font-content-section-wrapper .fc-feature-card{
  background: #f0f7ff;
  padding: 24px 22px;
  min-height: 236px;
  box-shadow: 0 8px 22px rgba(35, 49, 85, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}.tc-wp-content-root .font-content-section-wrapper .fc-feature-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.72) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}.tc-wp-content-root .font-content-section-wrapper .fc-feature-card:hover{
  transform: translateY(-6px) rotateX(1deg);
  box-shadow: var(--fc-shadow-hover);
  border-color: var(--fc-border-strong);
}.tc-wp-content-root .font-content-section-wrapper .fc-feature-card:hover::after{
  transform: translateX(120%);
}.tc-wp-content-root .font-content-section-wrapper .fc-feature-card:hover .fc-icon-box{
  transform: rotate(7deg) scale(1.04);
}.tc-wp-content-root .font-content-section-wrapper .fc-icon-box{
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--fc-accent-deep);
  font-size: 1.45rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(102, 126, 234, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform 220ms ease;
}.tc-wp-content-root .font-content-section-wrapper .fc-use-card{
  background: #fff;
  padding: 22px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 186px;
  box-shadow: 0 10px 26px rgba(39, 50, 80, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}.tc-wp-content-root .font-content-section-wrapper .fc-use-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(102,126,234,0.55), rgba(118,75,162,0.15), rgba(102,126,234,0.35)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}.tc-wp-content-root .font-content-section-wrapper .fc-use-card:hover{
  transform: perspective(700px) rotateY(-2deg) translateY(-3px);
  box-shadow: 0 16px 36px rgba(39, 50, 80, 0.11);
}.tc-wp-content-root .font-content-section-wrapper .fc-use-card:hover::before{
  opacity: 1;
}.tc-wp-content-root .font-content-section-wrapper .fc-use-card:hover .fc-side-icon{
  transform: translateX(3px) scale(1.04);
}.tc-wp-content-root .font-content-section-wrapper .fc-side-icon{
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--fc-accent);
  font-size: 1.35rem;
  background: #f0f7ff;
  border: 1px solid rgba(102, 126, 234, 0.16);
  transition: transform 220ms ease;
}.tc-wp-content-root .font-content-section-wrapper .fc-card-copy{
  min-width: 0;
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-card{
  background: #f0f7ff;
  padding: 22px;
  min-height: 202px;
  box-shadow: 0 8px 24px rgba(25, 35, 65, 0.06);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-card::after{
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -58px;
  right: -54px;
  background: radial-gradient(circle, rgba(102,126,234,0.18), transparent 68%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-card:hover{
  transform: translateY(2px) scale(0.992);
  box-shadow: inset 0 2px 10px rgba(25, 35, 65, 0.05), 0 10px 26px rgba(25, 35, 65, 0.08);
  border-color: var(--fc-border-strong);
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-card:hover::after{
  opacity: 1;
  transform: scale(1);
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-card:hover .fc-badge{
  transform: rotateY(180deg);
}.tc-wp-content-root .font-content-section-wrapper .fc-tip-top{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}.tc-wp-content-root .font-content-section-wrapper .fc-badge{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 22px rgba(102, 126, 234, 0.22);
  transition: transform 320ms ease;
}@media (min-width: 768px) and (max-width: 1023px) {.tc-wp-content-root .font-content-section-wrapper .fc-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100% !important;
  }.tc-wp-content-root .font-content-section-wrapper .fc-card{
    width: 100% !important;
    min-width: 0 !important;
  }}@media (min-width: 1024px) {.tc-wp-content-root .font-content-section-wrapper .fc-grid{
    grid-template-columns: repeat(4, 1fr) !important;
    width: 100% !important;
  }.tc-wp-content-root .font-content-section-wrapper .fc-card{
    width: 100% !important;
    min-width: 0 !important;
  }}@media (max-width: 767px) {.tc-wp-content-root .font-content-section-wrapper .fc-section{
    padding: 52px 14px;
  }.tc-wp-content-root .font-content-section-wrapper .fc-heading{
    margin-bottom: 24px;
    font-size: 1.65rem;
  }.tc-wp-content-root .font-content-section-wrapper .fc-grid{
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 14px;
  }.tc-wp-content-root .font-content-section-wrapper .fc-card{
    width: 100% !important;
    min-width: 0 !important;
  }.tc-wp-content-root .font-content-section-wrapper .fc-feature-card, .tc-wp-content-root .font-content-section-wrapper .fc-use-card, .tc-wp-content-root .font-content-section-wrapper .fc-tip-card{
    padding: 20px;
    min-height: auto;
  }.tc-wp-content-root .font-content-section-wrapper .fc-use-card{
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }.tc-wp-content-root .font-content-section-wrapper .fc-side-icon{
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }.tc-wp-content-root .font-content-section-wrapper .fc-icon-box{
    width: 44px;
    height: 44px;
    font-size: 1.28rem;
  }.tc-wp-content-root .font-content-section-wrapper .fc-card h3{
    font-size: 1rem;
  }.tc-wp-content-root .font-content-section-wrapper .fc-card p{
    font-size: 0.93rem;
  }}

.tc-wp-content-root .fc-grid-one {}
.tc-wp-content-root .fc-grid-three {}
.tc-wp-content-root .fc-grid-two {}