/* ============================================
   Global Styles & Reset
   ============================================ */

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #364758;
    line-height: 1.5;
    padding-top: 80px;
}

/* ============================================
   Header Styles
   ============================================ */

.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-container {
    background-color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 60px;
    object-fit: contain;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    text-align: left;
    padding: 0;
    line-height: 28.5px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none !important;
    }
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #8b5cf6;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hamburger-menu {
    display: none;
    position: relative;
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
}

.hamburger-checkbox {
    display: none;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 101;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #4a4a4a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-checkbox:checked ~ .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-checkbox:checked ~ .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-checkbox:checked ~ .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 99;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.hamburger-checkbox:checked ~ .nav-mobile {
    display: flex;
}

.company-name:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section-specific container widths */
.companies-section .container {
    max-width: 1341px;
}

.why-choose-section .container {
    max-width: 1138px;
}

.whats-in-it-section .container {
    max-width: 1250px;
}

.what-we-offer-section .container {
    max-width: 1121px;
}

.testimonials-section .container {
    max-width: 1280px;
}

.cta-section .container,
.coach-section .container,
.footer-section .container {
    max-width: 1100px;
}

.social-section .container {
    max-width: 1400px;
}

.faq-section .container {
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.column {
    padding: 0 15px;
}

.column.full {
    width: 100%;
}

.column.half {
    width: 50%;
}

.column.third {
    width: 33.333%;
}

.column.two-third {
    width: 66.666%;
}

/* Spacer */
.spacer.height-40 {
    height: 40px;
}

.spacer.height-60 {
    height: 60px;
}

/* ============================================
   Typography
   ============================================ */

h1 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    line-height: 1.2;
    font-size: 18px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    background-image: linear-gradient(100deg, rgb(243, 236, 249), rgb(223, 203, 241), rgb(250, 241, 219));
    padding: 60px 0;
}

.hero-title {
    color: rgb(9, 72, 178);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: rgb(54, 67, 88);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    transition: 0.16s;
    cursor: pointer;
    background-color: rgb(127, 86, 217);
    color: rgb(255, 255, 255);
    border-color: rgb(238, 211, 254);
    border-radius: 5px;
    padding: 13px 28px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 18px;
    width: 300px;
    text-align: center;
    border-style: solid;
    border-width: 6px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.trusted-by-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    width: 370px;
    border-radius: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0), rgb(232, 195, 255));
}

.trusted-by-container img {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    max-width: 120px;
}

.trusted-by-text {
    line-height: 1.2;
    font-size: 13px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 10px;
    color: rgb(120, 0, 194);
    text-align: left;
    flex: 1;
}

.hero-logo {
    width: 98.513%;
    height: auto;
}

/* ============================================
   Companies Section
   ============================================ */

.companies-section {
    padding: 60px 0;
    background-color: #fff;
}

.logo-grid-container {
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
}

.logo-row {
    display: flex;
    width: fit-content;
}

#logo-row-top {
    margin-bottom: 16px;
}

.logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    width: 144px;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    margin: 0 8px;
}

.logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

.desktop-hide {
    display: none !important;
}

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose-section {
    padding: 60px 0;
    background-color: #fff;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card img {
    margin-bottom: 20px;
}

.feature-title {
    line-height: 1.2;
    font-size: 18px;
    margin-top: 0px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 13px;
}

.feature-list {
    padding-left: 40px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    padding-bottom: 7px;
    text-align: center;
    align-items: center;
}

.feature-item i {
    color: rgb(127, 86, 217);
    font-size: 20px;
}

.feature-item p {
    line-height: 1.2;
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 15px;
}

/* ============================================
   What's In It For You Section
   ============================================ */

.whats-in-it-section {
    padding: 60px 0;
    background-image: linear-gradient(100deg, rgb(227, 221, 255), rgb(249, 250, 255), rgb(228, 222, 255));
}

.benefit-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 7px;
    margin-bottom: 20px;
    min-height: 130px;
}

.benefit-card img {
    width: 100%;
    max-width: 70px;
    border-radius: 10px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.benefit-content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    margin-left: 15px;
}

.benefit-title {
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 17px;
    padding-bottom: 7px;
}

.benefit-description {
    line-height: 1.2;
    color: rgb(71, 84, 103);
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* ============================================
   What We Offer Section
   ============================================ */

.what-we-offer-section {
    padding: 60px 0;
    background-color: #fff;
}

.offer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.offer-container > .column.half {
    flex: 1;
    width: auto;
    margin: 0;
}

.offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgb(228, 231, 236) 2px 3px 11px 2px;
    font-weight: 500;
}

.offer-content {
    flex-grow: 1;
}

.offer-card img {
    width: 100%;
    margin-bottom: 15px;
}

.offer-card-title {
    line-height: 1.2;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 7px;
}

.offer-card-subtitle {
    line-height: 1.2;
    font-size: 16px;
    font-weight: 600;
    color: rgb(16, 24, 40);
    padding-bottom: 10px;
}

.offer-card-description {
    line-height: 1.4;
    font-size: 15px;
    color: rgba(71, 84, 103, 0.82);
    padding-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.offer-card-highlight {
    line-height: 1.2;
    font-size: 15px;
    color: rgb(71, 84, 103);
    margin: 10px 0;
    padding: 5px;
    width: 270px;
    text-align: center;
    border-radius: 30px;
    background-color: rgb(238, 233, 255);
}

.time-slot {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.time-slot i {
    font-size: 16px;
    color: rgb(152, 162, 179);
}

.time-slot p {
    margin: 0 0 0 10px;
    font-size: 15px;
    color: rgb(71, 84, 103);
}

.time-slot p b {
    font-weight: 600;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding-bottom: 6px;
}

.checklist-item i {
    font-size: 18px;
    color: rgb(152, 162, 179);
}

.checklist-item p {
    margin: 0 0 0 10px;
    font-size: 15px;
    color: rgb(71, 84, 103);
}

.offer-card-note {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(16, 24, 40);
}

/* Button Animations */
@keyframes jerkyShake {
    0%, 98% { transform: translateX(0); }
    98.5% { transform: translateX(-4px); }
    99% { transform: translateX(4px); }
    99.5% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

@keyframes sheenSlide {
    0% { transform: translateX(-150%); }
    100% { transform: translateX(150%); }
}

.animated-button {
    position: relative;
    overflow: hidden;
    animation: jerkyShake 6s infinite;
    display: block;
    text-decoration: none;
    background-color: rgb(127, 86, 217);
    color: white;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.animated-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%);
    animation: sheenSlide 3s infinite;
}

.animated-button:hover {
    opacity: 0.9;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-scroll-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 15px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(218, 218, 218);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(71, 84, 103, 0.82);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.author-name {
    font-size: 17px;
    font-weight: 600;
    color: rgb(71, 84, 103);
    margin: 0;
}

.author-details img {
    width: 70px;
    margin-top: 5px;
    border-radius: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 60px 0;
    background-color: #fff;
}

.cta-box {
    padding: 30px 60px;
    background-image: linear-gradient(0deg, rgb(10, 59, 140), rgb(146, 59, 204));
    border-radius: 15px;
    color: white;
    text-align: center;
}

.cta-box img {
    width: 100%;
    max-width: 70px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.cta-title {
    line-height: 1.2;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 0px;
    color: white;
}

.cta-description {
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 40px;
    margin-top: 0px;
    padding-top: 10px;
    color: white;
}

.jerky-button {
    display: inline-block;
    text-decoration: none;
    transition: 0.16s;
    cursor: pointer;
    color: rgb(127, 86, 217);
    border-color: rgb(220, 220, 220);
    padding: 13px 28px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 15px;
    border-style: solid;
    border-width: 0px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 6px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    animation: jerkyShake 10s infinite;
}

.jerky-button:hover {
    opacity: 0.9;
}

/* ============================================
   Coach Section
   ============================================ */

.coach-section {
    padding: 60px 0;
    background-color: #fff;
}

.coach-section-container {
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.coach-section-container .column.third img {
    width: 100%;
    border-radius: 10px;
}

.coach-header {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.coach-header h1 {
    text-align: left;
    line-height: 1.2;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.coach-header p {
    font-size: 16px;
    line-height: 1.2;
    padding: 7px 15px;
    text-align: center;
    border-radius: 4px;
    background-image: linear-gradient(0deg, rgb(10, 59, 140), rgb(146, 59, 204));
    color: #ffffff;
    margin: 0 0 0 20px;
}

.coach-description {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.coach-description a {
    color: rgb(9, 72, 178);
    text-decoration: none;
}

.coach-description a:hover {
    text-decoration: underline;
}

.static-logo-container {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    width: 100%;
}

.static-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    flex: 1;
    min-width: 90px;
}

.static-logo-card img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* ============================================
   Social Media Section
   ============================================ */

.social-section {
    padding: 60px 0;
    background-image: linear-gradient(0deg, rgb(249, 245, 255), rgb(255, 255, 255));
}

.social-title {
    line-height: 1.2;
    font-size: 34px;
    font-weight: 600;
    color: rgb(132, 41, 202);
    text-align: left;
}

.social-icons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 10px;
    justify-items: left;
    max-width: 480px;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    max-width: 130px;
    padding: 10px;
    background-color: rgb(255, 240, 245);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.social-icon-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon-box img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    margin: 0;
}

.social-section .column.half:last-child img {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.container-faq {
    color: #fff;
    border: 1px solid rgb(246, 130, 31);
    border-style: solid none;
    border-top: none;
}

.question {
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.00rem;
    line-height: 1.4;
    text-transform: none;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.question::after {
    content: "+";
    font-size: 22px;
    position: absolute;
    right: 20px;
    transition: 0.2s;
    font-family: "Font Awesome 6 Pro";
    color: #746CE2;
}

.question.active::after {
    content: "-";
}

.question.active {
    color: #F6821F;
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.58);
}

.question.active + .answercont {
    max-height: 500px;
}

/* ============================================
   Footer
   ============================================ */

.footer-section {
    padding: 60px 0;
    background-color: rgb(248, 237, 255);
}

.footer-title {
    letter-spacing: 0px;
    font-size: 18px;
    font-weight: 600;
    word-spacing: 0px;
    margin-bottom: 15px;
}

.footer-link {
    line-height: 1.4;
    font-size: 16px;
    color: rgba(2, 119, 189, 0.58);
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 10px;
}

.footer-link a {
    color: rgba(21, 101, 192, 0.85);
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
    justify-content: center;
}

.footer-contact-item img {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 25px;
}

.footer-contact-item p {
    line-height: 1.4;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 10px;
}

.footer-link-inline {
    text-decoration: none;
    color: inherit;
}

.footer-address {
    line-height: 1.4;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 10px;
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Mobile Logo Animation */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .nav-desktop {
        display: none !important;
    }

    .hamburger-menu {
        display: block !important;
    }

    .company-name {
        font-size: 20px;
    }

    .logo {
        width: 50px;
        height: 35px;
    }

    @keyframes slide-right-to-left {
        from { transform: translateX(0%); }
        to { transform: translateX(-50%); }
    }

    @keyframes slide-left-to-right {
        from { transform: translateX(-50%); }
        to { transform: translateX(0%); }
    }

    .logo-grid-container {
        overflow: visible;
    }

    #logo-row-top {
        animation: slide-right-to-left 15s linear infinite;
    }

    #logo-row-bottom {
        animation: slide-left-to-right 15s linear infinite;
    }

    .desktop-hide {
        display: flex !important;
    }

    .trusted-by-container {
        width: 100% !important;
        max-width: 350px !important;
        margin: 20px 0 !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .trusted-by-text {
        font-size: 12px !important;
        line-height: 1.3 !important;
        padding-left: 10px !important;
        text-align: left !important;
        flex: 1 !important;
    }

    .testimonial-scroll-container {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .testimonial-scroll-container > .column.third {
        flex: 0 0 85%;
        width: 85%;
    }

    .testimonial-scroll-container::-webkit-scrollbar {
        height: 4px;
    }

    .testimonial-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .testimonial-scroll-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .coach-section-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .coach-section-container .column.third,
    .coach-section-container .column.two-third {
        width: 100% !important;
        text-align: center;
    }

    .coach-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .coach-header h1 {
        text-align: center;
    }

    .coach-header p {
        margin-left: 0 !important;
    }

    .coach-section-container .static-logo-container {
        justify-content: center;
    }

    .social-icons-container {
        max-width: 100%;
        gap: 10px;
    }

    .social-icon-box {
        height: 50px;
        padding: 8px;
    }

    .social-icon-box img {
        max-height: 34px;
    }

    .cta-description br {
        display: none;
    }
}

@media (min-width: 769px) {
    .logo-grid-container {
        overflow: visible;
    }

    .logo-row {
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-mobile {
        display: none !important;
    }
    
    .hamburger-menu {
        display: none !important;
    }
    
    .nav-desktop {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .header-container {
        padding: 12px 15px;
    }

    .company-name {
        font-size: 18px;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        width: 45px;
        height: 30px;
    }

    .trusted-by-container {
        max-width: 300px !important;
    }

    .trusted-by-text {
        font-size: 11px !important;
        padding-left: 8px !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 360px) {
    .trusted-by-text {
        font-size: 10px !important;
        padding-left: 5px !important;
    }
}

