/* ---------- BASIC RESET ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* ---------- NAVIGATION ---------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #ececec;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    min-height: 82px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #222222;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
}

.brand img {
    display: block;
    width: 54px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    color: #444444;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: #d9651b;
}


/* ---------- HERO ---------- */

.hero {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 34px 24px 48px;
    text-align: center;
    border-bottom: 1px solid #f0c7aa;
}

.logo {
    display: block;
    width: 115px;
    height: auto;
    margin: 0 auto;
}

h1 {
    max-width: 900px;
    margin: 34px auto 0;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.12;
    letter-spacing: -2px;
}

.hero-line {
    width: 90px;
    height: 5px;
    margin: 35px auto;
    border-radius: 20px;
    background: #ff914d;
}

.mission {
    max-width: 980px;
    margin: 0 auto;
    color: #595959;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.7;
}

.mission-line {
    display: block;
}


/* ---------- FOUNDER ---------- */

.founder-section {
    padding: 80px 24px;
    background: #fff4ed;
    border-top: 1px solid #ffd8bf;
    border-bottom: 1px solid #ffd8bf;
}

.founder-content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
}

.founder-photo-wrap {
    flex: 0 0 auto;
}

.founder-photo {
    display: block;
    width: 240px;
    height: auto;
}

.founder-message {
    max-width: 640px;
}

.founder-promise {
    margin: 0;
    color: #2d2d2d;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-style: italic;
    line-height: 1.7;
}

.founder-name {
    margin: 34px 0 5px;
    font-size: 1.45rem;
    font-weight: 700;
    color: #222222;
}

.founder-title {
    margin: 0;
    color: #666666;
    font-size: 1rem;
    letter-spacing: 0.03em;
}
/* ---------- SHARED SECTION HEADINGS ---------- */

.section-heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-mark {
    display: block;
    width: 42px;
    height: auto;
    margin: 0 auto 6px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading p {
    max-width: 700px;
    margin: 14px auto 0;
    color: #616161;
    font-size: 1.15rem;
    line-height: 1.65;
}


/* ---------- VIDEO ---------- */

.video-section {
    padding: 85px 24px;
    background: #ffffff;
}

.video-placeholder {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border: 2px dashed #d7d7d7;
    border-radius: 18px;
    background: #f7f7f7;
    color: #666666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-placeholder p {
    margin: 0;
    padding: 0 20px;
    text-align: center;
}

.play-button {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    padding-left: 5px;
    border-radius: 50%;
    background: #ff914d;
    color: #111111;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ---------- SOLUTIONS ---------- */

.solutions-section {
    padding: 85px 24px;
    background: #fcf7ef;
}

.solutions-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.solution-card {
    position: relative;
    min-height: 305px;
    padding: 34px 30px 76px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #ffc39e;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.card-mark {
    width: 44px;
    height: auto;
    margin-bottom: 20px;
}

.solution-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.28;
}

.solution-card p {
    margin: 18px 0 28px;
    color: #626262;
    font-size: 1.05rem;
    line-height: 1.65;
}

.card-link {
    margin-top: auto;
    color: #d9651b;
    font-weight: 700;
    align-self: flex-start;
}

.benefit-icons {
    position: absolute;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
}

.benefit-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    line-height: 1;
}

.benefit-icon::after {
    content: attr(data-label);
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: max-content;
    max-width: 220px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #222222;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 20;
}

.benefit-icon:hover::after,
.benefit-icon:focus::after {
    opacity: 1;
    visibility: visible;
}


/* ---------- WHY MALLARDQUEST ---------- */

.why-section {
    padding: 85px 24px;
    background: #ffffff;
}

.why-grid {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px;
}

.why-item {
    text-align: center;
}

.why-item img {
    width: 66px;
    height: auto;
    margin-bottom: 18px;
}

.why-item h3 {
    margin: 0;
    font-size: 1.4rem;
}

.why-item p {
    margin: 14px auto 0;
    color: #626262;
    font-size: 1.03rem;
    line-height: 1.65;
}


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

.site-footer {
    padding: 55px 24px 32px;
    background: #171717;
    color: #ffffff;
}

.footer-content {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand img {
    width: 48px;
    filter: invert(1);
}

.footer-links {
    margin: 30px 0 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 32px;
}

.footer-links a {
    color: #dddddd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff914d;
}

.copyright {
    margin: 0;
    color: #999999;
    font-size: 0.9rem;
}


/* ---------- PINNER PLUS PAGE SPACING ---------- */

.pinner-video-section {
    margin-top: -18px;
    padding-top: 0;
    padding-bottom: 34px;
}

.pinner-cta-section {
    padding-top: 24px;
    padding-bottom: 38px;
}

.pinner-video-section .section-heading,
.pinner-cta-section .section-heading {
    margin-bottom: 22px;
}


/* ---------- TABLETS ---------- */

@media (max-width: 900px) {
    .desktop-nav {
        gap: 22px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        gap: 28px;
    }
}
.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    list-style: none;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav summary::marker {
    display: none;
    content: "";
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-menu {
    position: absolute;
    top: 48px;
    right: 0;
    width: 200px;
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 18px;
    color: #444444;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-menu a:hover {
    background: #f7f7f7;
    color: #d9651b;
}

/* ---------- PHONES ---------- */

@media (max-width: 700px) {
    .nav-container {
        min-height: auto;
        padding: 12px 18px;
    }

    .brand {
        font-size: 1.35rem;
    }

    .brand img {
        width: 44px;
    }

    .desktop-nav {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
    .hero {
        padding: 32px 18px 42px;
    }

    .logo {
        width: 105px;
    }

    h1 {
        margin-top: 28px;
        font-size: clamp(2.15rem, 11vw, 3.1rem);
        letter-spacing: -1px;
    }

    .hero-line {
        margin: 28px auto;
    }

    .mission {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .mission-line {
        display: inline;
    }

    .mission-line:not(:last-child)::after {
        content: " ";
    }

    .founder-section {
        padding: 52px 20px;
    }

    .founder-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .founder-photo {
        width: 165px;
        margin: 0 auto;
    }

    .founder-promise {
        line-height: 1.55;
    }

    .video-section,
    .solutions-section,
    .why-section {
        padding: 62px 18px;
    }

    .solutions-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: auto;
        padding: 30px 25px 76px;
    }

    .benefit-icons {
        right: 20px;
        bottom: 20px;
    }

    .why-grid {
        gap: 42px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading p {
        font-size: 1.05rem;
    }

    .pinner-video-section {
        margin-top: -10px;
        padding-top: 0;
        padding-bottom: 28px;
    }

    .pinner-cta-section {
        padding-top: 20px;
        padding-bottom: 34px;
    }
}

/* ---------- PRIMARY BUTTON ---------- */

.primary-button {
    display: inline-block;
    padding: 18px 38px;
    border-radius: 10px;
    background: #ff914d;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    background: #e87932;
}


/* ---------- FACEBOOK COMMUNITY LINK ---------- */

.facebook-contact {
    margin-top: 26px;
    text-align: center;
    color: #666666;
    font-size: 1.05rem;
}

.facebook-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 6px;
    color: #1877f2;
    text-decoration: none;
    font-weight: 700;
}

.facebook-contact a:hover {
    text-decoration: underline;
}

.facebook-f {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

@media (max-width: 700px) {
    .facebook-contact {
        line-height: 1.6;
    }

    .facebook-contact a {
        margin-top: 8px;
        margin-left: 0;
    }
}/* ---------- BACK HOME ---------- */

.back-home{

    text-align:center;

    padding:10px 20px 55px;

}

.back-home a{

    color:#666;

    text-decoration:none;

    font-size:1.05rem;

    font-weight:600;

    transition:.2s;

}

.back-home a:hover{

    color:#f58220;

}.pinner-video-wrap {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    display: block;
    overflow: hidden;
}

.pinner-video-wrap groovevideo-widget {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}
.pinner-video-wrap iframe,
.pinner-video-wrap video {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}
/* ---------- CHOOSE YOUR PATH ---------- */

.solution-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.card-category {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #d9651b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-tagline {
    margin-top: auto;
    margin-bottom: 18px;
    font-style: italic;
    color: #555;
}

.button {
    display: inline-block;
    background: #ff914d;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    transition: .2s;
}

.button:hover {
    background: #e67d36;
}.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}.button {
    display: block;
    margin-top: auto;
    padding: 14px 20px;
    border-radius: 10px;
    background: #ff914d;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease;
}

.button:hover {
    background: #e87f37;
}

/* ---------- TIME CONVERTER PAGE ---------- */
.time-converter-page-logo {
    width: 180px;
}

.time-converter-benefits {
    width: 100%;
    max-width: 1000px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.time-converter-benefit {
    padding: 28px 26px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
}

.time-converter-benefit h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.time-converter-benefit p {
    margin: 0;
    color: #626262;
    font-size: 1.02rem;
    line-height: 1.6;
}

.time-converter-buy-button {
    display: inline-block;
    background: #ff914d;
    color: #ffffff;
    padding: 20px 38px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.time-converter-buy-button:hover {
    background: #e97d38;
}

@media (max-width: 700px) {
    .time-converter-page-logo {
        width: 145px;
    }

    .time-converter-benefits {
        grid-template-columns: 1fr;
    }

    .time-converter-buy-button {
        width: 100%;
        max-width: 420px;
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}
