/* ===================================
   CUSTOM STYLES — AI Autonomus
   =================================== */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ---- Hero Section Enhancements ---- */
.tf__banner {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.tf__banner_content {
  z-index: 2;
  position: relative;
}

.hero-bg-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 130px solid rgba(219, 241, 195, 0.5); /* Matching light green */
  border-top-color: transparent;
  border-right-color: transparent;
  z-index: 0;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

.floating-left {
  top: 0%;
  left: 10%;
}

.floating-right {
  top: 45%;
  right: 10%;
  animation-delay: 1.5s;
}

.floating-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.icon-primary {
  background: var(--colorPrimary);
}

.icon-secondary {
  background: #38bdf8; /* bright blue */
}

.floating-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-text strong {
  font-size: 16px;
  color: var(--colorSecondary);
  line-height: 1.2;
}

.floating-text span {
  font-size: 13px;
  color: #666;
}

.floating-card .stars {
  color: #f9a825;
  font-size: 10px;
  margin-top: 4px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
  .hero-bg-graphic {
    width: 600px;
    height: 600px;
    border-width: 80px;
  }
}

.tf__hero_ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.tf__trust_line {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 10px;
}

.tf__trust_line i {
  margin-right: 6px;
  color: #6c5ce7;
}

/* ---- Voice Demos Section ---- */
.tf__voice_demos {
  background: #f8f9fc;
}

.tf__voice_demos_sub {
  font-size: 16px;
  opacity: 0.7;
  margin-top: -5px;
}

/* Demo steps (1-2-3) */
.tf__demo_steps {
  text-align: center;
}

.tf__demo_step_card {
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.tf__demo_step_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tf__demo_step_num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tf__demo_step_card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tf__demo_step_card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* Audio demo cards */
.tf__audio_demo_card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tf__audio_demo_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tf__audio_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.tf__audio_demo_card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tf__audio_demo_card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.tf__audio_btn {
  margin-top: auto;
  font-size: 14px !important;
  padding: 10px 22px !important;
}

/* ---- Testimonial Cards ---- */
.tf__testimonial_card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.tf__testimonial_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tf__testimonial_stars {
  margin-bottom: 15px;
  color: #f9a825;
  font-size: 18px;
}

.tf__testimonial_stars i {
  margin: 0 2px;
}

.tf__testimonial_quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.tf__testimonial_author h6 {
  font-size: 14px;
  font-weight: 600;
  color: #6c5ce7;
}

/* ---- Comparison Cards ---- */
.tf__comparison {
  background: #fff;
}

.tf__comparison_card {
  border-radius: 16px;
  padding: 42px 30px;
  height: 100%;
  border: none;
}

.tf__card_us {
  background: var(--colorSecondary);
}

.tf__card_others {
  background: rgb(248, 246, 249);
}

.tf__comparison_card_header {
  margin-bottom: 15px;
  padding-bottom: 20px;
}

.tf__card_us .tf__comparison_card_header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tf__card_others .tf__comparison_card_header {
  border-bottom: 2px solid rgba(92, 114, 142, 0.15);
}

.tf__card_us .tf__comparison_card_header h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--colorWhite);
  margin: 0;
}

.tf__card_others .tf__comparison_card_header h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--colorSecondary);
  margin: 0;
}

.tf__comparison_list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 15px;
}

.tf__comparison_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--paraFont);
  line-height: 1.6;
}

.tf__card_us .tf__comparison_list li {
  color: var(--colorWhite);
}

.tf__card_others .tf__comparison_list li {
  color: var(--colorSecondary);
}

.tf__comparison_list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
  margin-right: 12px;
  font-size: 18px;
}

.tf__card_us .tf__comparison_list li span.icon-check {
  color: var(--colorPrimary);
}

.tf__card_others .tf__comparison_list li span.icon-cross {
  color: #f87d7d;
}

/* ---- Pricing Enhancements ---- */
.tf__pricing_tagline {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.tf__pricing_support {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.tf__single_pricing_popular {
  border: 2px solid #6c5ce7;
  position: relative;
}

.tf__pricing_badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ---- About Us Section ---- */
.tf__about_us {
  background: var(--colorSecondary);
  color: var(--colorWhite);
}

.tf__about_us .tf__common_heading h6 {
  color: var(--colorPrimary);
}

.tf__about_us .tf__common_heading h2 {
  color: var(--colorWhite);
}

.tf__about_desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--colorWhite);
  margin-bottom: 35px;
}

.tf__about_goals {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tf__about_goal_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--colorWhite);
}

.tf__about_goal_item i {
  font-size: 22px;
  color: var(--colorPrimary);
}

.tf__about_tagline {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--colorWhite);
}

/* ---- Footer tweaks ---- */
.tf__footer_tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 15px;
}

.tf__footer_cta_btn {
  margin-top: 10px;
  font-size: 14px !important;
}

/* ---- Stop Losing Calls Enhancements ---- */
.tf__unlock {
  background: var(--background-brand-2, linear-gradient(102deg, #dbf1c3 -7.72%, #dce7e3 86.48%)) !important;
}
.tf__unlock .tf__common_heading h6 {
  color: var(--colorPrimary) !important;
}
.tf__unlock .tf__common_heading h2,
.tf__unlock .tf__unlock_text p,
.tf__unlock .tf__unlock_text ul li {
  color: var(--colorSecondary) !important;
}
.tf__unlock .tf__unlock_text ul li::before {
  color: var(--colorPrimary) !important;
}
.tf__unlock .tf__unlock_btn a {
  background: var(--colorPrimary) !important;
  color: var(--colorWhite) !important;
}
.tf__unlock .tf__unlock_btn a:hover {
  background: var(--colorSecondary) !important;
  color: var(--colorWhite) !important;
}

/* ---- Process Cards Enhancements ---- */
.tf__process_cards_wrapper {
  padding-top: 20px;
}

.tf__process_line {
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: rgb(248, 246, 249);
  z-index: 0;
}

.tf__process_card {
  position: relative;
  z-index: 1;
  background: rgb(248, 246, 249);
  border-radius: 16px;
  padding: 42px 30px;
  height: 100%;
  transition: all 0.3s linear 0s;
}

.tf__process_card:hover {
  background: var(--colorSecondary);
}

.tf__process_card_header {
  margin-bottom: 25px;
}

.tf__process_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--colorPrimary);
  color: var(--colorPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: transparent;
  transition: all 0.3s linear 0s;
}

.tf__process_number {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  border: 1px solid rgba(17, 16, 19, 0.1);
  color: var(--colorSecondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: transparent;
  transition: all 0.3s linear 0s;
}

.tf__process_card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--colorSecondary);
  margin-bottom: 5px;
  transition: all 0.3s linear 0s;
}

.tf__process_card h4 {
  font-size: 15px;
  color: var(--colorPrimary);
  margin-bottom: 25px;
  font-weight: 500;
  transition: all 0.3s linear 0s;
}

.tf__process_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tf__process_list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--colorSecondary);
  line-height: 1.6;
  font-family: var(--paraFont);
  font-weight: 500;
  transition: all 0.3s linear 0s;
}

.tf__process_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  transition: all 0.3s linear 0s;
}

/* Hover States to match Pricing theme */
.tf__process_card:hover h3,
.tf__process_card:hover h4,
.tf__process_card:hover .tf__process_list li {
  color: var(--colorWhite);
}

.tf__process_card:hover .tf__process_number {
  color: var(--colorWhite);
  border-color: rgba(255, 255, 255, 0.2);
}

.tf__process_card:hover .tf__process_list li::before {
  background-color: var(--colorWhite);
}

@media (max-width: 991px) {
  .tf__process_line {
    display: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {

  .tf__about_goals {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .tf__hero_ctas {
    justify-content: center;
  }
}

/* ---- Fix spacing between heading H2 and sub-descriptions ---- */
#demos .tf__common_heading h2,
#pricing .tf__common_heading h2,
#services .tf__common_heading h2 {
  margin-bottom: 12px !important;
}

/* ---- Podcast/Voice Playing Card Style ---- */
.tf__audio_demo_card_v2 {
  background: rgb(248, 246, 249);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tf__audio_demo_card_v2:hover {
  background: var(--colorSecondary);
}

.tf__audio_cover {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-bottom: 24px;
}
.cover-orange {
  background: linear-gradient(135deg, #ffd8b1, #ffcaa0);
  color: #d16e25;
  box-shadow: 0 8px 20px rgba(255, 202, 160, 0.4);
}
.cover-blue {
  background: linear-gradient(135deg, #b1daff, #a0ccff);
  color: #256ed1;
  box-shadow: 0 8px 20px rgba(160, 204, 255, 0.4);
}
.cover-green {
  background: linear-gradient(135deg, #b1ffce, #a0ffbe);
  color: #25d15f;
  box-shadow: 0 8px 20px rgba(160, 255, 190, 0.4);
}

.tf__audio_title {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.25;
}

.tf__audio_desc {
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.5;
}

.tf__audio_stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 35px;
}
.stat_box {
  display: flex;
  flex-direction: column;
}
.stat_label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}
.stat_val {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}
.stat_val_sm {
  font-size: 14px;
  font-weight: 600;
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 20px;
  color: #444;
  margin-top: 2px;
  text-align: center;
}

.tf__audio_actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.play_btn_pill {
  flex: 1;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.theme-orange { background: #ffd3b6; }
.theme-orange:hover { background: #ffc49e; color:#000; }
.theme-blue { background: #cce4ff; }
.theme-blue:hover { background: #b3d7ff; color:#000; }
.theme-green { background: #ccffdf; }
.theme-green:hover { background: #b3ffce; color:#000; }

.icon_btn_circle {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.icon_btn_circle:hover {
  background: #f1f1f1;
}

/* ---- How It Works Card Style v2 ---- */
.tf__hiw_card_v2 {
  background: rgb(248, 246, 249);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s linear 0s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tf__hiw_card_v2:hover {
  background: var(--colorSecondary);
}

.tf__hiw_graphic_box {
  background: #fbfbfb;
  border-radius: 16px;
  height: 220px;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bg_graphic_1 { background: radial-gradient(circle at top right, #f2f9ff, #f9fcff); border: 2px solid #ebf5ff; }
.bg_graphic_2 { background: radial-gradient(circle at top left, #f0fff6, #f9fffb); border: 2px solid #e1ffed; }
.bg_graphic_3 { background: radial-gradient(circle at bottom center, #fff6ee, #fffbfa); border: 2px solid #ffefe0; }

/* Mockup UI 1: Incoming Call */
.ui_mockup_call {
  background: white;
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  text-align: center;
  width: 75%;
}
.mockup_caller {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.mockup_number {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.mockup_actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.action_btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.action_btn.red { background: #ff4a4a; }
.action_btn.green { background: #00d26a; }

/* Mockup UI 2: AI Bubble & Waveform */
.ui_mockup_ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 85%;
}
.ai_bubble {
  background: white;
  padding: 14px 20px;
  border-radius: 20px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
}
.ai_bubble i {
  color: var(--colorPrimary);
  font-size: 18px;
}
.ai_waveform {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 40px;
}
.ai_waveform span {
  display: block;
  width: 6px;
  background: var(--colorPrimary);
  border-radius: 3px;
  animation: wave 1s infinite ease-in-out;
}
.ai_waveform span:nth-child(1) { height: 15px; }
.ai_waveform span:nth-child(2) { height: 30px; animation-delay: 0.2s; }
.ai_waveform span:nth-child(3) { height: 40px; animation-delay: 0.4s; }
.ai_waveform span:nth-child(4) { height: 25px; animation-delay: 0.6s; }
.ai_waveform span:nth-child(5) { height: 15px; animation-delay: 0.8s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* Mockup UI 3: Stacked Bookings */
.ui_mockup_book {
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  width: 80%;
}
.ui_mockup_book i {
  color: #00d26a;
  font-size: 16px;
}
.stack_1 {
  top: 35px;
  transform: scale(0.85);
  opacity: 0.4;
  z-index: 1;
}
.stack_2 {
  top: 60px;
  transform: scale(0.92);
  opacity: 0.7;
  z-index: 2;
}
.stack_3 {
  top: 90px;
  transform: scale(1);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Title & Text */
.tf__hiw_text h5 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.tf__hiw_text p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

/* Match Pricing Hover Text */
.tf__hiw_card_v2:hover .tf__hiw_text h5,
.tf__hiw_card_v2:hover .tf__hiw_text p {
  color: var(--colorWhite) !important;
}

/* Pricing Hover colors for the Audio Demos */
.tf__audio_demo_card_v2:hover {
  background: var(--colorSecondary);
}
.tf__audio_demo_card_v2:hover .tf__audio_title,
.tf__audio_demo_card_v2:hover .tf__audio_desc,
.tf__audio_demo_card_v2:hover .stat_label,
.tf__audio_demo_card_v2:hover .stat_val {
  color: var(--colorWhite) !important;
}
.tf__audio_demo_card_v2:hover .stat_val_sm {
  background: rgba(255,255,255,0.1);
  color: var(--colorWhite);
}

/* ---- Interactive Audio Player UI ---- */
.audio_player_ui {
  background: #c96040;
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(201, 96, 64, 0.35);
}
.player_row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.track_name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92);
  flex-shrink: 0;
}
.play_pause_btn {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  color: white;
  font-size: 8px;
  transition: background 0.2s;
}
.play_pause_btn:hover {
  background: rgba(255,255,255,0.35);
}
.waveform_container {
  flex-grow: 1;
  height: 32px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.waveform_bars {
  display: flex;
  gap: 2.5px;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.audio_player_ui.audio_player_blue {
  background: #7cb3f0 !important;
  box-shadow: 0 4px 18px rgba(124, 179, 240, 0.4);
}
.audio_player_ui.audio_player_green {
  background: #6ed896 !important;
  box-shadow: 0 4px 18px rgba(110, 216, 150, 0.4);
}
.audio_player_ui.audio_player_blue .play_pause_btn,
.audio_player_ui.audio_player_green .play_pause_btn {
  color: #333;
  background: rgba(255, 255, 255, 0.4);
}

/* Fix overlap of "Stop Losing Calls" on mobile */
@media (max-width: 991px) {
  .tf__unlock {
    margin-top: 0 !important;
    padding: 40px 30px !important;
  }
  .tf__unlock_heading h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 575px) {
  .tf__unlock {
    padding: 30px 20px !important;
  }
  .tf__unlock_heading h2 {
    font-size: 22px !important;
  }
}
