/*

Template 2106 Soft Landing

http://www.tooplate.com/view/2106-soft-landing
	
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 25px;
  }

  section {
    position: relative;
    padding: 55px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #536976;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292E49, #536976);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #292E49, #536976); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #29ca8e;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #29ca8e;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }

  .custom-navbar .nav li a {
    font-size: 16px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #29ca8e;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    background: url('../images/home-bg.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 78vh;
    position: relative;
    padding-top: 8em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .home-info {
    margin-top: 2em;
  }

  .home-info h3 {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }
  


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #feature {
    background: #ffffff;
  }


  .feature-intro-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .feature-intro-left .section-title,
  .feature-intro-right .section-title {
    padding-bottom: 0;
  }

  .feature-intro-right {
    border-left: 2px solid #f0f0f0;
    padding-left: 40px;
  }

  .feature-intro-right h1 {
    margin-top: 0;
    margin-bottom: 15px;
  }

  .feature-intro-right p:last-child {
    margin-bottom: 0;
  }

  #feature .nav-tabs {
    border-bottom: 0;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #999999;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #29ca8e;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #29ca8e;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 25px;
  }

  .tab-pane-item {
    margin: 12px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: relative;
    bottom: auto;
    margin-top: 10px;
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url('../images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #about .section-title,
  #pricing .section-title {
    text-align: center;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 0;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 20px 30px;
    min-height: 455px;
  }

  .pricing-title {
    padding-bottom: 5px;
  }

  .pricing-info {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 20px 0;
  }

  .pricing-info p {
    font-size: 16px;
  }

  .pricing-bottom {
    position: relative;
    text-align: center;
  }

  .pricing-bottom span {
    font-size: 20px;
  }

  .price-badge {
    display: inline-block;
    margin: 8px 0 10px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #29ca8e;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }

  .pricing-btn {
    position: static;
    display: inline-block;
    margin-top: 4px;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding: 35px 0;
  }

  .copyright-text p {
    margin: 5px;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 45px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: auto;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding: 30px 0;
    }
  }


  @media screen and (max-width: 767px) {

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    .feature-intro-row {
      display: block;
      margin-bottom: 5px;
    }

    .feature-intro-right {
      border-left: 0;
      padding-left: 15px;
      padding-top: 5px;
    }

    .feature-intro-right h1 {
      margin-top: 0;
    }


    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }


  @media screen and (max-width: 480px) {

    .online-form input[type="email"],
    .online-form .form-control {
      width: 85%;
    }

    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: 65vh;
    }
  }


/* Tech-Bytes legal readiness additions */
.hero-legal-note {
  color: #f5f5f5;
  line-height: 1.6;
}
.form-privacy-note,
.business-identity,
.legal-links,
.footer-contact {
  color: #202020;
  line-height: 1.6;
}
.form-privacy-note {
  margin: 10px 15px 0 15px;
  font-size: 14px;
}
.form-privacy-note a,
.business-identity a,
.legal-links a,
.footer-contact a {
  color: #111111;
  font-weight: 600;
  text-decoration: underline !important;
}
.business-identity {
  font-size: 13px;
  margin-top: 10px !important;
}
.legal-links {
  font-size: 14px;
  font-weight: 600;
}
.legal-page {
  padding: 95px 0 55px 0;
  background: #ffffff;
}
.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: #222;
}
.legal-page p,
.legal-page li {
  color: #555;
  line-height: 1.8;
}
.legal-page .notice-box {
  background: #f7f7f7;
  border-left: 4px solid #222;
  padding: 18px;
  margin: 20px 0;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.legal-page th,
.legal-page td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: top;
}
.legal-page th {
  background: #f2f2f2;
}

/* Compact email link so the main navigation stays balanced */
.custom-navbar .nav li a.nav-email-link {
  border: 1px solid rgba(32, 32, 32, 0.22);
  border-radius: 20px;
  line-height: 1.2;
  margin-top: 15px;
  padding: 8px 16px;
}
.custom-navbar .nav li a.nav-email-link:hover,
.top-nav-collapse .nav li a.nav-email-link:hover {
  background: #202020;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .custom-navbar .nav li a.nav-email-link {
    display: inline-block;
    margin-top: 6px;
    padding: 7px 14px;
  }
}


/* Contact form status and anti-spam honeypot */
.contact-status {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}

.contact-status-success {
  color: #1f6f3f;
}

.contact-status-error {
  color: #9f2a2a;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#contact-form input[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Cleaner side-by-side feature and founder layout */
.feature-about-section {
  background: #ffffff;
  overflow: hidden;
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.compact-section-title {
  padding-bottom: 0;
}

.eyebrow {
  color: #29ca8e;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.compact-section-title h1 {
  margin-top: 0;
}

.section-lead {
  color: #555555;
  font-size: 17px;
  line-height: 1.8;
  margin-top: 6px;
}

.service-founder-row {
  display: flex;
  align-items: stretch;
}

.services-panel,
.founder-showcase {
  height: 100%;
}

.services-panel {
  background: #f8fbfd;
  border: 1px solid #edf1f4;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(32, 32, 32, 0.07);
}

.services-panel .nav-tabs {
  border-bottom: 1px solid #e1e7ea !important;
  margin-bottom: 26px;
}

.services-panel .nav-tabs>li>a {
  margin-right: 28px !important;
}

.services-panel .tab-content {
  margin-top: 0 !important;
}

.services-panel .tab-pane-item {
  margin: 0 0 20px 0;
}

.services-panel .tab-pane-item:last-child {
  margin-bottom: 0;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-summary-item {
  background: #ffffff;
  border: 1px solid #edf1f4;
  border-radius: 18px;
  padding: 18px;
}

.service-summary-item strong,
.service-summary-item span {
  display: block;
}

.service-summary-item strong {
  color: #202020;
  margin-bottom: 6px;
}

.service-summary-item span {
  color: #777777;
  font-size: 14px;
  line-height: 1.6;
}

.founder-showcase {
  background: linear-gradient(135deg, #292e49 0%, #536976 100%);
  border-radius: 30px;
  min-height: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 24px 60px rgba(32, 32, 32, 0.15);
}

.founder-showcase:before {
  background: radial-gradient(circle, rgba(41, 202, 142, 0.25), rgba(41, 202, 142, 0) 65%);
  content: "";
  height: 320px;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
}

.founder-robot {
  margin: -55px auto -10px;
  max-width: 430px;
  position: relative;
  z-index: 1;
}

.founder-robot img {
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.22));
}

.clean-founder-card {
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 22px;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.founder-photo {
  flex: 0 0 130px;
}

.founder-photo img {
  border-radius: 20px;
  width: 130px;
}

.founder-copy h2 {
  margin: 0 0 4px;
}

.founder-copy small {
  color: #777777;
  display: block;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.founder-copy p {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .section-heading-row,
  .service-founder-row {
    display: block;
  }

  .services-panel {
    margin-bottom: 30px;
  }

  .founder-showcase {
    min-height: auto;
  }

  .founder-robot {
    margin-top: -35px;
  }
}

@media screen and (max-width: 767px) {
  .services-panel,
  .founder-showcase {
    border-radius: 22px;
    padding: 24px;
  }

  .services-panel .nav-tabs>li {
    float: none;
  }

  .services-panel .nav-tabs>li>a {
    display: inline-block;
    margin-right: 0 !important;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }

  .clean-founder-card {
    display: block;
  }

  .founder-photo {
    margin-bottom: 18px;
  }

  .founder-photo img {
    width: 120px;
  }
}


.experience-note {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  margin: 0 0 18px;
  padding: 20px 22px;
  position: relative;
  z-index: 2;
}

.experience-note strong {
  color: #202020;
  display: block;
  margin-bottom: 8px;
}

.experience-note p {
  margin-bottom: 0;
}

/* Tech-Bytes lighter homepage redesign */
.tb-hero {
  background: url('../images/home-bg.jpg') no-repeat center center;
  background-size: cover;
  min-height: 760px;
  padding: 180px 0 120px;
}

.tb-hero-card {
  color: #ffffff;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.tb-hero-card h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 12px 0 22px;
}

.tb-hero-card p {
  color: #f4f7f8;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.tb-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tb-secondary-btn {
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  padding: 10px 28px;
}

.tb-secondary-btn:hover,
.tb-secondary-btn:focus {
  background: #ffffff;
  color: #202020;
}

.tb-hero-mini {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  margin-top: 25px;
  padding: 32px;
  position: relative;
  z-index: 2;
}

.tb-mini-kicker {
  color: #1f7b58;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.tb-hero-mini h3 {
  color: #202020;
  font-weight: 700;
  margin: 0 0 12px;
}

.tb-hero-mini p {
  color: #5d6664;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tb-fit-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.tb-fit-grid span {
  background: #f4fbf8;
  border: 1px solid #dcefe7;
  border-radius: 16px;
  color: #30423c;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
}

.tb-price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tb-price-card li:before {
  color: #29ca8e;
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.tb-services,
.tb-pricing,
.tb-about {
  background: #ffffff;
  padding: 75px 0;
}

.tb-pricing {
  background: #f7fbf9;
}

.tb-section-lead {
  color: #666666;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 760px;
}

.tb-card-row,
.tb-price-row {
  margin-top: 20px;
}

.tb-service-card,
.tb-price-card {
  background: #ffffff;
  border: 1px solid #edf1f4;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(32, 32, 32, 0.07);
  min-height: 250px;
  margin-bottom: 30px;
  padding: 30px;
  transition: 0.3s ease;
}

.tb-service-card:hover,
.tb-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(32, 32, 32, 0.1);
}

.tb-icon {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}

.tb-service-card h2,
.tb-price-card h2 {
  color: #202020;
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 12px;
}

.tb-service-card p,
.tb-price-summary {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.75;
}

.tb-price-card {
  min-height: 505px;
  padding: 28px;
  position: relative;
}

.tb-featured-price {
  border: 2px solid #29ca8e;
}

.tb-dark-price {
  background: #202020;
  border-color: #202020;
}

.tb-dark-price h2,
.tb-dark-price .tb-price,
.tb-dark-price .tb-quote-badge,
.tb-dark-price .tb-price-summary,
.tb-dark-price li {
  color: #ffffff;
}

.tb-plan-label {
  background: #29ca8e;
  border-radius: 999px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.tb-quote-badge {
  background: #f1fbf7;
  border: 1px solid #cbeede;
  border-radius: 999px;
  color: #1f7b58;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin: 6px 0 16px;
  padding: 8px 14px;
}

.tb-dark-price .tb-quote-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.tb-price {
  color: #202020;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 12px 0 16px;
}

.tb-price span {
  color: #777777;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 4px;
}

.tb-dark-price .tb-price span {
  color: #d7d7d7;
}

.tb-price-card li {
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 9px;
  padding-left: 23px;
  position: relative;
}

.tb-price-card .section-btn {
  bottom: 28px;
  left: 28px;
  position: absolute;
  right: 28px;
  text-align: center;
}

.tb-note-box,
.tb-soft-warning {
  background: #ffffff;
  border: 1px solid #e8efec;
  border-radius: 20px;
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 5px;
  padding: 20px 24px;
}

.tb-soft-warning {
  background: #f7fbf9;
  margin-top: 24px;
}

.tb-about-image {
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.15));
  margin: 0 auto 25px;
  max-height: 360px;
}

.tb-about h1 {
  color: #202020;
  font-weight: 700;
  margin-top: 0;
}

.tb-about p {
  color: #606060;
  font-size: 16px;
  line-height: 1.8;
}

.tb-about {
  padding-bottom: 42px;
}

.tb-contact {
  background: #ffffff;
  padding: 42px 0 75px;
}

#contact-form .section-title p {
  color: #666666;
}

.business-identity {
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (max-width: 991px) {
  .tb-hero {
    min-height: auto;
    padding: 150px 0 80px;
  }
  .tb-hero-card h1 {
    font-size: 44px;
  }
  .tb-price-card {
    min-height: 470px;
  }
}

@media screen and (max-width: 767px) {
  .tb-hero {
    padding: 125px 0 65px;
  }
  .tb-hero-card h1 {
    font-size: 36px;
  }
  .tb-hero-card p {
    font-size: 17px;
  }
  .tb-hero-actions {
    display: block;
  }
  .tb-hero-actions .section-btn,
  .tb-secondary-btn {
    display: block;
    margin: 0 0 12px;
    text-align: center;
  }
  .tb-price-card {
    min-height: auto;
  }
  .tb-price-card .section-btn {
    margin-top: 20px;
    position: static;
  }
}
