/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Lato', sans-serif;
    color: #2f2f2f;
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2f2f2f;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #212121;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .site-header {
        position: static;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: auto;
    max-height: 50px;
    width: auto;
}

.header-tagline {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: italic;
    color: #20E7F3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.header-right {
    display: flex;
    align-items: center;
}

.btn-book-call {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 0.975rem;
    font-weight: 700;
    font-style: italic;
    color: #20E7F3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10.4px 20.8px;
    border: none;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book-call:hover {
    background-color: #20E7F3;
    color: #2c2c2c;
    opacity: 1;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-right {
        width: 100%;
    }
    
    .btn-book-call {
        width: 100%;
        text-align: center;
    }
    
    .site-logo {
        max-height: 50px;
    }
    
    .header-tagline {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        max-height: 40px;
    }
    
    .header-tagline {
        font-size: 0.7rem;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: #1d4ed8;
    opacity: 1;
}

.btn-secondary {
    background-color: #64748b;
}

.btn-secondary:hover {
    background-color: #475569;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.hero-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Form Styles */
.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.hero-cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    padding: 40px 20px;
    background-color: #fff;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1200px;
    width: 100%;
}

.stats-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stats-text-content {
    text-align: center;
}

.stats-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stats-heading .underline {
    text-decoration: underline;
}

.stats-but {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stats-heading-large {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

h3.stats-heading-large {
    font-size: 3rem;
}

.stats-highlight {
    font-size: 1.625rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.stats-description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-video-content {
    width: 100%;
}

.stats-video-content .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.stats-video-content .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-lets-talk {
    display: inline-block;
    padding: 14.4px 36px;
    background-color: #20E7F3;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-lets-talk:hover {
    background-color: #1dd5e0;
    opacity: 1;
}

/* Problem Section */
.problem-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #212121;
}

.problem-quote {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: #20E7F3;
    text-transform: none;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Bebas Neue', sans-serif;
}

.problem-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    margin: 0;
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

h3.problem-heading {
    font-size: 3.5rem;
}

/* Checklist Section */
.checklist-section {
    padding: 80px 20px;
    background-color: #fff;
}

.checklist-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.checklist-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.checklist-image {
    max-width: 60%;
    height: auto;
    display: block;
}

.checklist-text-content {
    text-align: left;
}

.checklist-heading {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #000;
}

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

.checklist li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #000;
    line-height: 1.6;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.5rem;
}

.btn-lets-talk-checklist {
    display: inline-block;
    padding: 14.4px 36px;
    background-color: #20E7F3;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-lets-talk-checklist:hover {
    background-color: #1dd5e0;
    opacity: 1;
}

/* Solution Section */
.solution-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

@media (max-width: 968px) {
    .solution-section {
        min-height: 120px;
        padding: 36px 20px;
    }
}

.solution-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

h3.solution-heading {
    font-size: 2.5rem;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-text-content {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
}

h2.section-subtitle {
    font-size: 1.1375rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

h3.section-heading {
    font-size: 2.5rem;
}

.about-content {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-see-products {
    display: inline-block;
    padding: 12px 30px;
    background-color: #20E7F3;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-see-products:hover {
    background-color: #1dd5e0;
    opacity: 1;
}

/* Video Section */
.video-section {
    padding: 60px 20px;
    background-color: #212121;
    text-align: center;
}

.video-section-subtitle {
    font-size: 1.725rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h2.video-section-subtitle {
    font-size: 1.725rem;
}

.video-section-heading {
    font-size: 1.725rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #20E7F3;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h3.video-section-heading {
    font-size: 1.725rem;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: transparent;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon-link:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #20E7F3;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h2.testimonials-subtitle {
    font-size: 3rem;
}

.testimonials-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h3.testimonials-heading {
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
}

@media (max-width: 968px) {
    .testimonial-image {
        max-width: 136px;
    }
}

.testimonial-quote {
    font-style: italic;
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-quote p {
    margin-bottom: 1rem;
}

.testimonial-quote strong {
    color: #000;
    font-weight: 700;
    font-style: normal;
}

.testimonial-author {
    font-weight: 600;
    color: #20E7F3;
    font-size: 0.875rem;
    margin-top: auto;
    text-align: center;
    line-height: 1.3;
}

.testimonial-name {
    font-size: 1.47rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.testimonial-title {
    display: block;
    font-size: 1.1375rem;
    font-family: 'Bebas Neue', sans-serif;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background-color: #212121;
}

.products-section-subtitle {
    font-size: 1.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #20E7F3;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h2.products-section-subtitle {
    font-size: 1.95rem;
}

.products-section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h3.products-section-heading {
    font-size: 3.5rem;
}

.product {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: transparent;
    padding: 0;
}

.product:last-child {
    margin-bottom: 0;
}

.product-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-video-content {
    width: 100%;
}

.product-video-wrapper {
    position: relative;
    padding-bottom: 142.22%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.product-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-text-content {
    color: #fff;
}

.product-subtitle {
    font-size: 1.1375rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #20E7F3;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

h4.product-subtitle {
    font-size: 1.1375rem;
}

.product-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

h3.product-heading {
    font-size: 2rem;
}

.product-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-subtitle-text {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #fff;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.25rem;
}

.product-features li strong {
    color: #fff;
}

/* Footer */
.footer {
    background-color: #212121;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-affiliate {
    color: #20E7F3;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #20E7F3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

.footer-text {
    color: #fff;
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
}

.footer-nav a:hover {
    color: #20E7F3;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: none;
    color: #fff;
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

.footer-link-subtle {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.footer-link-subtle:hover,
.footer-link-subtle:visited,
.footer-link-subtle:active {
    color: inherit;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .stats-h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-content-wrapper > .stats-video-content {
        order: -1;
    }
    
    .btn-lets-talk {
        margin-bottom: 0.25rem;
    }
    
    .btn-see-products {
        margin-bottom: 0.5rem;
    }
    
    .stats-description {
        margin-bottom: 1rem;
    }
    
    .product-features {
        margin-bottom: 1rem;
    }
    
    .product-text-content .btn-lets-talk {
        margin-bottom: 0.5rem;
    }
    
    .products-section {
        padding-bottom: 40px;
    }
    
    .product:last-child {
        margin-bottom: 0;
    }
    
    .stats-text-content {
        text-align: center;
    }
    
    .checklist-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checklist-image-content {
        order: 2;
    }
    
    .checklist-text-content {
        order: 1;
        text-align: center;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-content {
        order: 1;
    }
    
    .about-text-content {
        order: 2;
        text-align: center;
    }
    
    .product-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-video-content {
        order: 1;
    }
    
    .product-text-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-heading {
        font-size: 1.5rem;
    }
    
    .stats-heading-large {
        font-size: 2.5rem;
    }
    
    .stats-highlight {
        font-size: 1.25rem;
    }
    
    h3.problem-heading,
    h3.solution-heading {
        font-size: 2rem;
    }
    
    .hero-form-wrapper {
        padding: 30px 20px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-heading {
        font-size: 2rem;
    }
    
    .product {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .product-heading {
        font-size: 1.75rem;
    }
}

