:root {
    --color-black: #000000;
    --color-dark-grey: #484847;
    --color-medium-grey: #b2b3b2;
    --color-light-grey: #efeff0;
    --color-red: #ca2e31;
}

/* Typography */
body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.4;

    color: var(--color-dark-grey);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    color: var(--color-black);
}


hr {
  max-width: 90vw;
  width: 600px;
  height: 3px;

  margin: 3rem auto;
  background-color: var(--color-medium-grey);
  border-radius: 10px;
  border: 0;

  opacity: 1;
}


/* Custom Color Classes */
.bg-light-grey {
    background-color: var(--color-light-grey);
}

.bg-dark-grey {
    background-color: var(--color-dark-grey);
}

.text-red {
    color: var(--color-red);
}

.text-dark-grey {
    color: var(--color-dark-grey);
}

.border-light-grey {
    border-color: var(--color-light-grey);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: #ffffff;
    font-weight: 400;
    padding: 12px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #b02629;
    border-color: #b02629;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--color-dark-grey);
    color: var(--color-dark-grey);
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--color-dark-grey);
    border-color: var(--color-dark-grey);
    color: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;

    width: 100%;
    background-color: transparent;
    padding: 1rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: #ffffff;
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}
  .navbar-brand img.worthington-logo-hat {
    height: 40px;
    margin: 0 0.5rem 5px 0;
  }

.navbar.scrolled .navbar-brand img {
    height: 40px;
}
  .navbar.scrolled .navbar-brand img.worthington-logo-hat {
    height: 30px;
  }

.navbar-nav .nav-link {
    color: var(--color-dark-grey);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-red);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;

    filter: grayscale(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-box {
    background: rgba(255, 255, 255, 1);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--color-dark-grey);
}

/* Email Input Group */
.email-signup {
    max-width: 600px;
    margin: 0 auto;
}

.email-signup .form-control {
    padding: 14px 20px;
    border: 2px solid var(--color-light-grey);
    border-radius: 6px;
    font-size: 1rem;
}

.email-signup .form-control:focus {
    border-color: var(--color-red);
    box-shadow: none;
    outline: none;
}

/* Social Proof */
.social-proof {
    color: var(--color-medium-grey);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.social-proof img {
    height: 30px;
    margin: 0 10px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.social-proof img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Feature Icons */
.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 3rem;
}
  .feature-icon img {
    display: block;
    max-width: 100%;
  }

.feature-icon.icon-red {
    color: var(--color-red);
}

.highlight {
  color: var(--color-red);
}

/* Problem Section */
.problem-section {
    padding: 80px 0 0;
}

.problem-card {
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;

    font-size: 1.2rem;
    text-align: left;

    border-radius: 1rem;
}
    .problem-card h3 {
    }

.problem-card:hover {
    transform: translateY(-5px);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-feature {
    padding: 60px 0;
}

.solution-feature img,
.solution-feature .mockup {
  width: 100%;
  max-height: 300px;
  max-width: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 8px;
}

/* Trust Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--color-light-grey);
    color: #ffffff;
}

.trust-section h2 {
    color: #ffffff;
}
/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--color-dark-grey);
    color: #ffffff;
}

.trust-section h2 {
    color: #ffffff;
}

/* Checklist Section */
.checklist-section {
    padding: 80px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--color-light-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(10px);
    background-color: #e5e5e6;
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-light-grey) 0%, #ffffff 100%);
}

.final-cta-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--color-dark-grey);
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: var(--color-red);
}

/* Mockup Placeholder */
.mockup-placeholder {
    background-color: var(--color-light-grey);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-medium-grey);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-md {
    font-size: 1.3rem;
}
.text-large {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .final-cta-section h1 {
        font-size: 2.2rem;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

