@font-face {
    font-family: 'Huile de Jacinthe';
    src: url('fonts/Huile_de_Jacinthe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 9%);
    line-height: 1.5;
}

.sttp-wrapper {
    min-height: 100vh;
}

.sttp-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: hsl(0, 0%, 90%);
    background-color: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(8px);
}

.sttp-navbar-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-navbar-content {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
}

.sttp-navbar-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sttp-navbar-logo {
    height: 40px;
    width: auto;
    filter: invert(1);
}

.sttp-navbar-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.sttp-navbar-link {
    font-size: 14px;
    font-weight: 500;
    color: hsl(0, 0%, 9%);
    text-decoration: none;
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-navbar-link:hover {
    color: hsl(45, 93%, 47%);
}

.sttp-navbar-hamburger {
    display: block;
    padding: 8px;
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
}

.sttp-navbar-hamburger-icon {
    height: 24px;
    width: 24px;
}

.sttp-mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

.sttp-mobile-menu-overlay[data-state="open"] {
    opacity: 1;
    visibility: visible;
}

.sttp-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background-color: hsl(0, 0%, 100%);
    transform: translateX(100%);
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease;
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
}

.sttp-mobile-menu-overlay[data-state="open"] .sttp-mobile-menu {
    transform: translateX(0);
}

.sttp-mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sttp-mobile-menu-link {
    font-size: 18px;
    font-weight: 500;
    color: hsl(0, 0%, 9%);
    text-decoration: none;
    padding-top: 8px;
    padding-bottom: 8px;
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-mobile-menu-link:hover {
    color: hsl(45, 93%, 47%);
}

.sttp-hero {
    position: relative;
    overflow: hidden;
    background-image: url('/assets/hero-sttp-final.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.sttp-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsla(0, 0%, 0%, 0.3);
}

.sttp-hero-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    z-index: 10;
}

.sttp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.sttp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: hsl(0, 0%, 100%);
    text-align: right;
    align-items: flex-end;
}

.sttp-hero-badge-wrapper {
    display: inline-block;
}

.sttp-hero-badge {
    color: hsl(0, 84%, 60%);
    font-size: 30px;
    font-family: 'Huile de Jacinthe', cursive, sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.3);
}

.sttp-hero-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 8px hsla(0, 0%, 0%, 0.3);
}

.sttp-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.3);
}

.sttp-hero-description {
    font-size: 18px;
    font-weight: 500;
    max-width: 576px;
    text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.3);
    color: hsl(48, 96%, 53%);
}

.sttp-hero-cta-wrapper {
    padding-top: 16px;
}

.sttp-hero-cta {
    display: inline-block;
    background-color: hsl(0, 0%, 9%);
    color: hsl(45, 93%, 47%);
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 20px 25px -5px hsla(0, 0%, 0%, 0.1), 0 10px 10px -5px hsla(0, 0%, 0%, 0.04);
    transition-property: opacity, transform;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-hero-cta:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.sttp-hero-spacer {
    display: none;
}

.sttp-logo-ticker { /* removed */ }

.sttp-ranking-proof {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: hsl(0, 0%, 96%);
}

.sttp-ranking-proof-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-ranking-proof-main-heading {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

.sttp-ranking-proof-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.sttp-ranking-proof-highlight-text {
    position: relative;
    z-index: 10;
}

.sttp-ranking-proof-highlight-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background-color: hsl(48, 96%, 53%);
    transform: rotate(-1deg);
    z-index: 0;
    opacity: 0.8;
}

.sttp-ranking-proof-opening {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.sttp-ranking-proof-opening-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.sttp-ranking-proof-box {
    background-color: hsl(0, 0%, 100%);
    border-width: 2px;
    border-style: solid;
    border-color: hsl(0, 84%, 60%);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 15px -3px hsla(0, 0%, 0%, 0.1), 0 4px 6px -2px hsla(0, 0%, 0%, 0.05);
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sttp-ranking-proof-box-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sttp-ranking-proof-box-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.sttp-ranking-proof-box-text {
    font-size: 16px;
    font-weight: 600;
}

.sttp-ranking-proof-middle {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sttp-ranking-proof-middle-bold {
    font-weight: 700;
    text-align: center;
}

.sttp-ranking-proof-middle-text {
    text-align: center;
}

.sttp-ranking-proof-middle-bold-xl {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.sttp-ranking-proof-heading {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

.sttp-ranking-proof-images {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.sttp-ranking-proof-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
}

.sttp-ranking-proof-image-link {
    position: relative;
    display: block;
    cursor: pointer;
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease;
    width: 100%;
}

.sttp-ranking-proof-image-link:hover {
    transform: scale(1.05);
}

.sttp-ranking-proof-tape {
    position: absolute;
    width: 112px;
    height: 40px;
    background-color: hsl(39, 100%, 50%);
    z-index: 10;
    box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1), 0 2px 4px -1px hsla(0, 0%, 0%, 0.06);
    opacity: 0.9;
}

.sttp-ranking-proof-tape-tl {
    top: -24px;
    left: -24px;
    transform: rotate(-45deg);
}

.sttp-ranking-proof-tape-tr {
    top: -24px;
    right: -24px;
    transform: rotate(45deg);
}

.sttp-ranking-proof-tape-bl {
    bottom: -24px;
    left: -24px;
    transform: rotate(45deg);
}

.sttp-ranking-proof-tape-br {
    bottom: -24px;
    right: -24px;
    transform: rotate(-45deg);
}

.sttp-ranking-proof-image-wrapper {
    position: relative;
    border-width: 4px;
    border-style: solid;
    border-color: hsl(45, 93%, 47%);
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
    overflow: hidden;
    border-radius: 2px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-ranking-proof-image {
    width: 100%;
    height: auto;
}

.sttp-ranking-proof-closing {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sttp-ranking-proof-closing-bold {
    font-weight: 700;
    text-align: center;
}

.sttp-ranking-proof-closing-text {
    text-align: center;
}

.sttp-ranking-proof-closing-bold-xl {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.sttp-social-proof {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-social-proof-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-social-proof-heading {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

.sttp-social-proof-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.sttp-social-proof-review-wrapper {
    position: relative;
    max-width: 448px;
    width: 100%;
}

.sttp-social-proof-review-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.3), 0 10px 30px hsla(0, 0%, 0%, 0.22);
    border-width: 4px;
    border-style: solid;
    border-color: hsl(0, 0%, 96%);
}

.sttp-social-proof-vouches {
    margin-top: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.sttp-social-proof-vouches-heading {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.sttp-social-proof-vouches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.sttp-social-proof-vouch-link {
    display: block;
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

.sttp-social-proof-vouch-link:hover {
    transform: translateY(-8px);
}

.sttp-social-proof-vouch-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border-width: 4px;
    border-style: solid;
    border-color: hsl(0, 0%, 96%);
    box-shadow: 0 20px 50px hsla(0, 0%, 0%, 0.25), 0 10px 20px hsla(0, 0%, 0%, 0.15);
}

.sttp-social-proof-vouch-image {
    width: 100%;
    height: auto;
}

.sttp-testimonial {
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-testimonial-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-testimonial-content {
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}

.sttp-testimonial-stars-top,
.sttp-testimonial-stars-bottom {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sttp-testimonial-stars-top {
    margin-bottom: 24px;
}

.sttp-testimonial-stars-bottom {
    margin-top: 24px;
}

.sttp-testimonial-star {
    width: 32px;
    height: 32px;
    color: hsl(45, 100%, 51%);
    fill: hsl(45, 100%, 51%);
}

.sttp-testimonial-box {
    background-color: hsl(45, 100%, 51%);
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.sttp-testimonial-text {
    color: hsl(0, 0%, 0%);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.7;
    text-align: center;
}

.sttp-features {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-features-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-features-header {
    text-align: center;
    margin-bottom: 48px;
}

.sttp-features-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sttp-features-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.sttp-feature-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.sttp-feature-image-wrapper {
    width: 100%;
}

.sttp-feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px hsla(0, 0%, 0%, 0.1), 0 10px 10px -5px hsla(0, 0%, 0%, 0.04);
}

.sttp-feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sttp-feature-heading {
    font-size: 24px;
    font-weight: 700;
}

.sttp-feature-description {
    font-size: 16px;
    color: hsl(0, 0%, 45%);
    line-height: 1.7;
}

.sttp-feature-description p {
    margin-bottom: 16px;
}

.sttp-feature-description p:last-child {
    margin-bottom: 0;
}

.sttp-comparison {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-comparison-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-comparison-title {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
}

.sttp-comparison-wrapper {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.sttp-comparison-table {
    background-color: hsl(0, 0%, 100%);
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    border-color: hsl(45, 93%, 47%);
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
    overflow: hidden;
}

.sttp-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background-color: hsl(0, 0%, 96%);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: hsl(45, 93%, 47%);
}

.sttp-comparison-header-cell {
    font-size: 18px;
    font-weight: 700;
}

.sttp-comparison-header-ours,
.sttp-comparison-header-others {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sttp-comparison-logo {
    width: 40px;
    height: 40px;
}

.sttp-comparison-header-label {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.sttp-comparison-question {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsl(0, 0%, 96%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sttp-comparison-question-icon {
    width: 24px;
    height: 24px;
    color: hsl(0, 0%, 45%);
}

.sttp-comparison-rows {
    display: flex;
    flex-direction: column;
}

.sttp-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: hsl(0, 0%, 90%);
    transition-property: background-color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-comparison-row:hover {
    background-color: hsla(0, 0%, 96%, 0.5);
}

.sttp-comparison-row:last-child {
    border-bottom-width: 0;
}

.sttp-comparison-cell {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.sttp-comparison-cell-center {
    justify-content: center;
    text-align: center;
}

.sttp-comparison-check {
    width: 20px;
    height: 20px;
    color: hsl(39, 100%, 50%);
    flex-shrink: 0;
}

.sttp-comparison-x {
    width: 20px;
    height: 20px;
    color: hsl(0, 0%, 45%);
    flex-shrink: 0;
}

.sttp-comparison-text-small {
    font-size: 12px;
    color: hsl(0, 0%, 45%);
    font-weight: 500;
}

.sttp-faq {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: hsl(0, 0%, 100%);
}

.sttp-faq-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-faq-title {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
}

.sttp-faq-list {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sttp-faq-item {
    border-width: 2px;
    border-style: solid;
    border-color: hsl(45, 93%, 47%);
    border-radius: 12px;
    background-color: hsl(48, 100%, 95%);
    overflow: hidden;
    transition-property: background-color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-faq-item:hover {
    background-color: hsl(48, 100%, 92%);
}

.sttp-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
    text-align: left;
}

.sttp-faq-question {
    font-size: 16px;
    font-weight: 700;
    color: hsl(48, 100%, 23%);
    padding-right: 16px;
}

.sttp-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: hsl(48, 100%, 23%);
    transition-property: transform;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-faq-item[data-state="open"] .sttp-faq-icon {
    transform: rotate(180deg);
}

.sttp-faq-content {
    max-height: 0;
    overflow: hidden;
    transition-property: max-height;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-faq-item[data-state="open"] .sttp-faq-content {
    max-height: 1000px;
}

.sttp-faq-answer {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 20px;
    padding-top: 8px;
}

.sttp-faq-answer p {
    font-size: 14px;
    color: hsl(0, 0%, 9%);
    line-height: 1.7;
}

.sttp-pricing {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: hsl(0, 0%, 96%);
}

.sttp-pricing-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.sttp-pricing-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sttp-pricing-content {
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.sttp-pricing-card {
    background-color: hsl(0, 0%, 100%);
    border-width: 2px;
    border-style: solid;
    border-color: hsl(45, 93%, 47%);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
    overflow: hidden;
}

.sttp-pricing-card-header {
    background-color: hsl(45, 93%, 47%);
    padding: 24px;
    text-align: center;
}

.sttp-pricing-card-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: hsl(0, 0%, 9%);
}

.sttp-pricing-card-price {
    font-size: 48px;
    font-weight: 900;
    color: hsl(0, 0%, 9%);
}

.sttp-pricing-card-currency {
    font-size: 18px;
    color: hsla(0, 0%, 9%, 0.8);
}

.sttp-pricing-card-body {
    padding: 32px;
}

.sttp-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.sttp-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sttp-pricing-check {
    width: 20px;
    height: 20px;
    color: hsl(142, 71%, 45%);
    flex-shrink: 0;
    margin-top: 2px;
}

.sttp-pricing-feature span {
    font-size: 14px;
}

.sttp-pricing-cta {
    display: block;
    width: 100%;
    background-color: hsl(45, 93%, 47%);
    color: hsl(0, 0%, 9%);
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 24px;
    transition-property: opacity, transform;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-pricing-cta:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.sttp-pricing-payment-methods {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsl(0, 0%, 90%);
    padding-top: 24px;
}

.sttp-pricing-payment-text {
    font-size: 14px;
    text-align: center;
    color: hsl(0, 0%, 45%);
    margin-bottom: 16px;
}

.sttp-pricing-payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sttp-pricing-payment-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition-property: opacity;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-pricing-payment-logo:hover {
    opacity: 1;
}

.sttp-pricing-choice {
    margin-top: 48px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    border-color: hsl(45, 93%, 47%);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
}

.sttp-pricing-choice-image-wrapper {
    position: relative;
}

.sttp-pricing-choice-image {
    width: 100%;
    height: auto;
}

.sttp-pricing-choice-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-image: linear-gradient(to top, hsl(0, 0%, 100%), hsla(0, 0%, 100%, 0.8), transparent);
}

.sttp-pricing-choice-content {
    padding: 32px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.sttp-pricing-choice-title {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

.sttp-pricing-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.sttp-pricing-option {
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.sttp-pricing-option-bad {
    background-color: hsla(0, 84%, 60%, 0.1);
    border-width: 2px;
    border-style: solid;
    border-color: hsl(0, 84%, 60%);
}

.sttp-pricing-option-good {
    background-color: hsla(142, 71%, 45%, 0.1);
    border-width: 2px;
    border-style: solid;
    border-color: hsl(142, 71%, 45%);
}

.sttp-pricing-option-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sttp-pricing-option-bad .sttp-pricing-option-title {
    color: hsl(0, 84%, 60%);
}

.sttp-pricing-option-good .sttp-pricing-option-title {
    color: hsl(142, 71%, 45%);
}

.sttp-pricing-option-text {
    font-size: 14px;
    color: hsl(0, 0%, 45%);
}

.sttp-footer {
    background-color: hsl(0, 0%, 9%);
    color: hsl(0, 0%, 100%);
    padding-top: 48px;
    padding-bottom: 48px;
}

.sttp-footer-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sttp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.sttp-footer-brand {
    grid-column: span 1;
}

.sttp-footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: invert(1);
}

.sttp-footer-description {
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 448px;
}

.sttp-footer-heading {
    font-weight: 700;
    margin-bottom: 16px;
}

.sttp-footer-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sttp-footer-list-item {
    display: block;
}

.sttp-footer-link {
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-footer-link:hover {
    color: hsl(0, 0%, 100%);
}

.sttp-footer-bottom {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsla(0, 0%, 100%, 0.2);
    padding-top: 32px;
}

.sttp-footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sttp-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sttp-footer-icon {
    width: 16px;
    height: 16px;
}

.sttp-footer-email {
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

.sttp-footer-email:hover {
    color: hsl(0, 0%, 100%);
}

.sttp-footer-copyright {
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.6);
}

@media (min-width: 767px) {
    .sttp-navbar-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sttp-hero {
        min-height: 800px;
    }

    .sttp-hero-overlay {
        background-color: transparent;
    }

    .sttp-hero-badge {
        font-size: 40px;
    }

    .sttp-hero-title {
        font-size: 48px;
    }

    .sttp-hero-subtitle {
        font-size: 30px;
    }

    .sttp-hero-description {
        font-size: 20px;
    }

    .sttp-ranking-proof-main-heading {
        font-size: 36px;
    }

    .sttp-ranking-proof-opening-text {
        font-size: 20px;
    }

    .sttp-ranking-proof-box {
        padding: 32px;
    }

    .sttp-ranking-proof-box-icon {
        font-size: 30px;
    }

    .sttp-ranking-proof-box-text {
        font-size: 18px;
    }

    .sttp-ranking-proof-middle-bold-xl {
        font-size: 24px;
    }

    .sttp-ranking-proof-heading {
        font-size: 36px;
    }

    .sttp-ranking-proof-closing-bold-xl {
        font-size: 24px;
    }

    .sttp-social-proof-heading {
        font-size: 36px;
    }

    .sttp-social-proof-avatar {
        width: 48px;
        height: 48px;
    }

    .sttp-social-proof-rating-number {
        font-size: 60px;
    }

    .sttp-social-proof-star {
        width: 28px;
        height: 28px;
    }

    .sttp-social-proof-vouches-heading {
        font-size: 30px;
    }

    .sttp-social-proof-vouches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .sttp-testimonial-box {
        padding-left: 32px;
        padding-right: 32px;
    }

    .sttp-testimonial-text {
        font-size: 18px;
    }

    .sttp-features-title {
        font-size: 36px;
    }

    .sttp-feature-heading {
        font-size: 30px;
    }

    .sttp-feature-description {
        font-size: 18px;
    }

    .sttp-comparison-title {
        font-size: 36px;
    }

    .sttp-comparison-logo {
        width: 48px;
        height: 48px;
    }

    .sttp-comparison-header-label {
        font-size: 14px;
    }

    .sttp-comparison-cell {
        font-size: 16px;
    }

    .sttp-comparison-check,
    .sttp-comparison-x {
        width: 24px;
        height: 24px;
    }

    .sttp-comparison-text-small {
        font-size: 14px;
    }

    .sttp-faq-title {
        font-size: 36px;
    }

    .sttp-faq-question {
        font-size: 18px;
    }

    .sttp-faq-answer p {
        font-size: 16px;
    }

    .sttp-pricing-title {
        font-size: 36px;
    }

    .sttp-pricing-card-price {
        font-size: 60px;
    }

    .sttp-pricing-card-body {
        padding: 40px;
    }

    .sttp-pricing-feature span {
        font-size: 16px;
    }

    .sttp-pricing-choice-content {
        padding: 40px;
    }

    .sttp-pricing-choice-title {
        font-size: 30px;
    }

    .sttp-pricing-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .sttp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sttp-footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 991px) {
    .sttp-navbar-links {
        display: flex;
    }

    .sttp-navbar-hamburger {
        display: none;
    }

    .sttp-hero {
        min-height: 900px;
    }

    .sttp-hero-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .sttp-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .sttp-hero-badge {
        font-size: 48px;
    }

    .sttp-hero-title {
        font-size: 56px;
    }

    .sttp-hero-subtitle {
        font-size: 36px;
    }

    .sttp-hero-spacer {
        display: block;
    }

    .sttp-ranking-proof {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .sttp-ranking-proof-main-heading {
        font-size: 48px;
        margin-bottom: 48px;
    }

    .sttp-ranking-proof-opening {
        gap: 32px;
        margin-bottom: 64px;
    }

    .sttp-ranking-proof-opening-text {
        font-size: 24px;
    }

    .sttp-ranking-proof-heading {
        font-size: 48px;
        margin-bottom: 48px;
    }

    .sttp-ranking-proof-grid {
        gap: 128px;
    }

    .sttp-social-proof {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .sttp-social-proof-heading {
        font-size: 48px;
        margin-bottom: 48px;
    }

    .sttp-social-proof-rating {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 48px;
    }

    .sttp-social-proof-vouches {
        margin-top: 96px;
    }

    .sttp-social-proof-vouches-heading {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .sttp-testimonial {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .sttp-testimonial-box {
        padding-left: 48px;
        padding-right: 48px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sttp-testimonial-text {
        font-size: 20px;
    }

    .sttp-features {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .sttp-features-header {
        margin-bottom: 64px;
    }

    .sttp-features-title {
        font-size: 48px;
    }

    .sttp-features-list {
        gap: 96px;
    }

    .sttp-feature-item {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .sttp-feature-item-reverse .sttp-feature-image-order-2 {
        order: 2;
    }

    .sttp-feature-item-reverse .sttp-feature-content-order-1 {
        order: 1;
    }

    .sttp-feature-heading {
        font-size: 36px;
    }

    .sttp-comparison {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .sttp-comparison-title {
        font-size: 48px;
        margin-bottom: 64px;
    }

    .sttp-comparison-header {
        padding: 24px;
    }

    .sttp-comparison-header-cell {
        font-size: 20px;
    }

    .sttp-comparison-row {
        padding: 24px;
    }

    .sttp-faq {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .sttp-faq-title {
        font-size: 48px;
        margin-bottom: 64px;
    }

    .sttp-pricing {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .sttp-pricing-title {
        font-size: 48px;
    }

    .sttp-footer {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .sttp-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sttp-footer-brand {
        grid-column: span 2;
    }

    .sttp-footer-bottom-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .sttp-hero-title {
        font-size: 72px;
    }

    .sttp-ranking-proof-main-heading {
        font-size: 60px;
    }

    .sttp-ranking-proof-heading {
        font-size: 48px;
    }

    .sttp-social-proof-heading {
        font-size: 60px;
    }

    .sttp-social-proof-vouches-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sttp-features-title {
        font-size: 48px;
    }

    .sttp-feature-heading {
        font-size: 36px;
    }

    .sttp-comparison-title {
        font-size: 48px;
    }

    .sttp-faq-title {
        font-size: 48px;
    }

    .sttp-pricing-title {
        font-size: 48px;
    }

    .sttp-pricing-choice-title {
        font-size: 36px;
    }
}
