@font-face {
  font-family: 'Rubik';
  src: url('/static/fonts/Rubik-VariableFont_wght.ttf') format('truetype');
}

/* Top banner */
#top-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--main-font, 'Rubik', sans-serif);
    line-height: 1.4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

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

html, body {
  overflow-x: hidden;
}

body {
    font-family: var(--main-font, 'Rubik', sans-serif);
    background-color: var(--bg-color, #FBF8F3);
    color: var(--primary-color, #473005);
    margin: 0;
    padding: 0;
}

/* Unified headings - desktop */
h1 { font-size: 3.75rem !important; }
h2 { font-size: 3.15rem !important; }
h3 { font-size: 2.25rem !important; }

/* Navigation bar */
#mynavbar {
    width: 100%;
    background-color: var(--navbar-bg-color, #ffffff);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo-container {
    flex: 1;
}

.navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-width: 360px;
    width: 50%;
}

.navbar-buttons {
    flex: 1;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--primary-color, #473005);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link:visited {
    color: var(--primary-color, #473005);
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-link.active {
    text-decoration: underline;
    font-weight: 500;
}

.navbar-button {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    align-self: center;
}

.nav-btn {
    background-color: var(--nav-btn-bg, white);
    color: var(--primary-color, #473005);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid var(--primary-color, #473005);
    text-align: center;
    margin-right: 8px;
    white-space: nowrap;
}

.nav-btn:hover {
    background-color: var(--nav-btn-hover-bg, var(--primary-color, #473005));
    color: white;
}

.logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  height: 100px;
  margin-left: 20px;
}

.logo-container a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-container img {
  max-height: 100%;
  width: auto;
}

.logo-container #logo {
  height: var(--logo-height, 60%);
}

/* CMS page content area */
.cms-content {
    padding-top: 100px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 80px;
    min-height: calc(100vh - 80px);
    color: var(--primary-color, #473005);
}

/* Tablet */
@media (max-width: 992px) {
    .cms-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-feature-row {
        gap: 32px;
    }

    .product-features {
        max-width: 100%;
    }

    .landing-strip {
        padding: 40px 24px;
    }

    #contact-sales-modal {
        padding: 36px 40px 28px;
    }

    .cs-layout {
        gap: 40px;
    }

    .cs-left {
        flex: 0 0 320px;
    }

    .contact-sales-benefits li {
        font-size: 1.5rem;
    }
}

.cms-content h1 {
    margin-bottom: 30px;
    font-weight: 600;
}

.cms-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.cms-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.cms-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cms-content ul, .cms-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.cms-content li {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cms-content a {
    color: var(--primary-color, #473005);
    text-decoration: underline;
}

.cms-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

/* Pricing summary table */
.pricing-summary-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-summary-table {
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    font-size: 15px;
    background-color: var(--form-bg-color, rgba(255, 255, 255, 0.75));
}

.pricing-summary-table thead th {
    background-color: transparent;
    color: var(--primary-color, #473005);
    font-weight: 600;
    padding: 10px 16px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ddd;
}

.pricing-summary-table tbody td {
    padding: 6px 16px;
    border-top: 1px solid #ebebeb;
    vertical-align: middle;
}

.pricing-summary-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.pricing-summary-table tbody tr:first-child td {
    border-top: none;
}

.summary-btn {
    display: inline-block;
    padding: 9px 22px;
    min-width: 160px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--button-bg-color, #3d2e14);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    font-family: var(--main-font, 'Rubik', sans-serif);
}

.summary-btn:hover {
    opacity: 0.85;
}

.pricing-summary-table tbody td:has(.summary-btn-wrap) {
    overflow: visible;
    vertical-align: middle;
}

/* Pricing cards */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 420px;
    background-color: var(--form-bg-color, rgba(255, 255, 255, 0.75));
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 5px 17px 10px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-card-name p {
    margin: 0;
    font-size: inherit;
}

.pc-row {
    box-sizing: border-box;
    overflow: hidden;
}

/* Billing toggle */
.pricing-billing-toggle {
    display: inline-flex;
    gap: 0;
    border: 1px solid #e0d6c8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pricing-billing-option {
    padding: 6px 18px;
    font-size: 14px;
    cursor: pointer;
    color: #8b6f47;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}

.pricing-billing-active {
    background: var(--primary-color, #473005);
    color: #fff;
}

.pricing-billing-option:not(.pricing-billing-active):hover {
    background: #f5ebe0;
}

.pricing-card-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-card-period {
    font-size: 1.3rem;
    font-weight: 400;
}

.pricing-card-yearly-note {
    display: block;
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

/* Special offer */
.pricing-special-price {
    display: block;
    color: var(--primary-color, #473005);
}

.pricing-original-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    margin-top: 4px;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px 0;
    text-align: left;
}

.pricing-card-features li {
    font-size: 1.3rem;
    padding: 9px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card-features li::before {
    content: "✔";
    color: green;
    margin-right: 10px;
}

.pricing-card-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin: 20px 0 24px 0;
    text-align: left;
}

.pricing-card-description p {
    margin: 0;
}

.pricing-card-details-below {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin: 14px 0 28px 0;
    text-align: left;
}

.pricing-card-details-below p {
    margin: 0;
}

.pricing-card-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #777;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    line-height: 1.6;
    white-space: pre-line;
}

.pc-row:has(.pricing-cta-badge-wrap) {
    overflow: visible;
}

.pricing-cta-badge-wrap {
    position: relative;
    display: inline-block;
}

.pricing-card-banner {
    background: #000;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pricing-badge-pulse 2s ease-in-out infinite;
    position: absolute;
    top: -14px;
    right: -18px;
    left: auto;
    transform: rotate(3deg);
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--main-font, 'Rubik', sans-serif);
    z-index: 2;
}

@keyframes pricing-badge-pulse {
    0%, 100% { transform: rotate(3deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.05); }
}

.pricing-card-cta {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--button-bg-color, #3d2e14);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.pricing-card-cta:hover {
    opacity: 0.85;
    color: white;
    text-decoration: none;
}

/* Signup modal overlay */
#pricing-signup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

#pricing-signup-modal {
    background: var(--bg-color, #F6F5F2);
    border: 1px solid var(--primary-color, #473005);
    border-radius: 10px;
    padding: 48px 40px 36px;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: var(--main-font, 'Rubik', sans-serif);
    color: var(--primary-color, #473005);
}

#pricing-signup-modal .form-control-label {
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-size: 14px;
}

#pricing-signup-modal .form-control {
    font-size: 16px;
}

/* reCAPTCHA in signup modal - scale to match input width on mobile */
@media (max-width: 400px) {
    #pricing-signup-modal .g-recaptcha {
        overflow: hidden;
        max-width: 100%;
    }
    #pricing-signup-modal .g-recaptcha > div {
        transform-origin: 0 0;
        transform: scale(0.68);
    }
}
@media (min-width: 401px) and (max-width: 768px) {
    #pricing-signup-modal .g-recaptcha {
        overflow: hidden;
        max-width: 100%;
    }
    #pricing-signup-modal .g-recaptcha > div {
        transform-origin: 0 0;
        transform: scale(0.85);
    }
}

/* Login modal overlay */
#login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

#login-modal-box {
    background: var(--bg-color, #F6F5F2);
    border: 1px solid var(--primary-color, #473005);
    border-radius: 10px;
    padding: 48px 40px 36px;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: var(--main-font, 'Rubik', sans-serif);
    color: var(--primary-color, #473005);
}

#login-modal-box .form-control-label {
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-size: 14px;
}

#login-modal-box .form-control {
    font-size: 16px;
}

/* Forgot password modal overlay */
#forgot-pw-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

#forgot-pw-modal-box {
    background: var(--bg-color, #F6F5F2);
    border: 1px solid var(--primary-color, #473005);
    border-radius: 10px;
    padding: 48px 40px 36px;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: var(--main-font, 'Rubik', sans-serif);
    color: var(--primary-color, #473005);
}

#forgot-pw-modal-box .form-control-label {
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-size: 14px;
}

#forgot-pw-modal-box .form-control {
    font-size: 16px;
}

#forgot-pw-modal-box .forgot-pw-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

#forgot-pw-modal-box .forgot-pw-msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#forgot-pw-modal-box .forgot-pw-msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Sales modal overlay */
#contact-sales-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 15px;
}

#contact-sales-modal {
    background: var(--bg-color, #F6F5F2);
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 48px 72px 36px;
    width: 1080px;
    max-width: 95%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.cs-layout {
    display: flex;
    gap: 70px;
}

.cs-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-right {
    flex: 1;
    min-width: 0;
}

#contact-sales-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

#contact-sales-close:hover {
    color: #333;
}

.contact-sales-header {
    text-align: left;
    margin-bottom: 24px;
}

.contact-sales-header h2 {
    margin: 0;
    color: var(--primary-color, #473005);
    line-height: 1.3;
}

.contact-sales-header p {
    font-size: 1.3rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-sales-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-sales-benefits li {
    font-size: 1.9rem;
    padding: 8px 0 8px 30px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.contact-sales-benefits li::before {
    content: "✔";
    color: var(--button-bg-color, #8FAEA1);
    position: absolute;
    left: 0;
    font-size: 1.9rem;
}

.cs-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.cs-form-field {
    flex: 1;
}

#contact-sales-modal .form-control-label {
    display: block;
    text-align: left;
    margin-bottom: 4px;
    font-size: 14px;
}

#contact-sales-modal .form-control {
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

/* Placeholder when no CMS content yet */
.cms-placeholder {
    color: #999;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Footer */
.landing-footer {
    background-color: var(--navbar-bg-color, #ffffff);
    padding: 40px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: var(--primary-color, #473005);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.footer-nav-link:hover {
    text-decoration: underline;
    color: var(--primary-color, #473005);
}

.footer-tagline {
    color: var(--primary-color, #473005);
    font-size: 1.15rem;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.social-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-link i {
    font-size: 22px;
    color: var(--social-icon-color, #000000);
}

.x-icon {
    width: 22px;
    height: 22px;
    position: relative;
    top: -1px;
}

.footer-legal {
    flex: 1;
    text-align: center;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-separator {
    margin: 0 8px;
    color: #ccc;
}

.footer-copyright {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Solutions page */
.solutions-intro {
    text-align: center;
    margin: 0;
    padding-top: 20px;
}

.solutions-intro > *:first-child {
    margin-top: 0;
}

.solutions-intro p {
    font-size: 1.6rem;
    line-height: 1.8;
}

.solutions-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.solutions-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 520px;
    background-color: var(--form-bg-color, rgba(255, 255, 255, 0.75));
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 52px 36px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.solutions-card.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.solutions-card.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: inherit;
}

.solutions-card.has-bg > * {
    position: relative;
    z-index: 1;
}

.solutions-card h2,
.solutions-card h3 {
    margin-top: 0;
}

.solutions-card p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.solutions-details {
    margin: 0 0 50px 0;
    text-align: center;
}

.solutions-details p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.solutions-checklist-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 50px 0;
}

.solutions-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.solutions-checklist li {
    font-size: var(--checklist-font-size, 1.4rem);
    line-height: 1.8;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.solutions-checklist li::before {
    content: "\2714";
    color: var(--checkmark-color, green);
    font-size: 1.6rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.solutions-quotes {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-style: italic;
    color: #555;
}

.solutions-quotes p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.solutions-cta-wrap {
    text-align: center;
    margin: 40px 0 30px 0;
}

.solutions-cta-btn {
    font-size: 1.5rem;
    padding: 18px 52px;
}

/* Product page */
body.product-page .product-intro {
    padding-top: 48px;
    margin-top: 0;
}

body.product-page .product-intro-2 {
    margin-bottom: 44px;
}

body.product-page .product-video-container {
    margin-top: 48px;
    margin-bottom: 96px;
}

body.product-page .solutions-quotes {
    margin-top: 64px;
}

.solutions-page .cms-content > .solutions-intro:first-child {
    margin-top: 28px;
}

.solutions-page .solutions-intro-2 {
    margin-top: 60px;
    margin-bottom: 56px;
}

body.solutions-page .solutions-details {
    padding-top: 12px;
    margin-top: 0;
    margin-bottom: 40px;
}

body.solutions-page .solutions-quotes {
    margin-top: 64px;
    margin-bottom: 32px;
}

.pricing-page .cms-content > .solutions-intro:first-child {
    margin-top: 28px;
    margin-bottom: 44px;
}

.pricing-page .solutions-quotes {
    margin-top: 64px;
}

.company-page .cms-content > .solutions-intro:first-child {
    margin-top: 28px;
    margin-bottom: 52px;
}

/* WYSIWYG: strong inside headings - match parent weight, don't add extra bold (desktop only) */
@media (min-width: 769px) {
    .cms-content h1 strong,
    .cms-content h2 strong,
    .cms-content h3 strong {
        font-weight: inherit;
    }
}

/* Company page: style ul/li in company content as checklist with checkmarks */
.company-page .product-feature-text p {
    margin-top: 0;
    margin-bottom: 6px;
}

.company-page .product-feature-text ul,
.company-page .product-feature-text ol {
    list-style: none;
    padding: 10px 0 0 20px;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

.company-page .product-feature-text ul li,
.company-page .product-feature-text ol li {
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 8px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    color: var(--primary-color, #473005);
}

.company-page .product-feature-text ul li p,
.company-page .product-feature-text ul li div,
.company-page .product-feature-text ul li h1,
.company-page .product-feature-text ul li h2,
.company-page .product-feature-text ul li h3,
.company-page .product-feature-text ol li p,
.company-page .product-feature-text ol li div,
.company-page .product-feature-text ol li h1,
.company-page .product-feature-text ol li h2,
.company-page .product-feature-text ol li h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
    line-height: inherit;
}

.company-page .product-feature-text ul li::before,
.company-page .product-feature-text ol li::before {
    content: "✔";
    color: var(--checkmark-color, green);
    font-size: 1.6rem;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Also cover intro checklist if Mission block is in intro */
.company-page .solutions-intro ul,
.company-page .solutions-intro ol {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

.company-page .solutions-intro ul li,
.company-page .solutions-intro ol li {
    font-size: 1.6rem;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    color: var(--primary-color, #473005);
}

.company-page .solutions-intro ul li p,
.company-page .solutions-intro ul li div,
.company-page .solutions-intro ol li p,
.company-page .solutions-intro ol li div {
    margin: 0 !important;
    padding: 0 !important;
}

.company-page .solutions-intro ul li::before,
.company-page .solutions-intro ol li::before {
    content: "✔";
    color: var(--checkmark-color, green);
    font-size: 1.6rem;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Pricing page intro checklist - same tight spacing */
.pricing-page .solutions-intro ul,
.pricing-page .solutions-intro ol {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

.pricing-page .solutions-intro ul li,
.pricing-page .solutions-intro ol li {
    font-size: 1.6rem;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    color: var(--primary-color, #473005);
}

.pricing-page .solutions-intro ul li p,
.pricing-page .solutions-intro ul li div,
.pricing-page .solutions-intro ol li p,
.pricing-page .solutions-intro ol li div {
    margin: 0 !important;
    padding: 0 !important;
}

.pricing-page .solutions-intro ul li::before,
.pricing-page .solutions-intro ol li::before {
    content: "✔";
    color: var(--checkmark-color, green);
    font-size: 1.6rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.product-page .landing-strip + .cms-content {
    padding-top: 16px;
}

.product-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.product-cards .solutions-card {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 300px;
}

/* Full-width strip (shared with landing page) */
.landing-strip {
    width: 100%;
    background-color: var(--navbar-bg-color, #ffffff);
    padding: 48px 40px;
    margin: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-feature-subheading {
    color: var(--primary-color, #473005);
    margin: 0 0 24px 0;
}

.landing-cta-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.landing-cta-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
}

.landing-cta-btn:hover {
    opacity: 0.85;
}

.landing-cta-primary {
    background-color: var(--button-bg-color, #3d2e14);
    color: #fff;
    padding: 20px 56px;
    font-size: 1.9rem;
}

/* Product feature rows (alternating text/image) */
.product-features {
    max-width: 1100px;
    margin: 0 auto 50px;
}

.product-feature-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.product-feature-text {
    flex: 1;
    order: 1;
}

.product-feature-image {
    flex: 1;
    order: 2;
}

.product-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-feature-row.reverse .product-feature-text {
    order: 2;
}

.product-feature-row.reverse .product-feature-image {
    order: 1;
}

@media (max-width: 768px) {
    .product-feature-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-feature-image {
        order: 1 !important;
    }

    .product-feature-text {
        order: 2 !important;
    }
}

.product-video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.product-video {
    position: relative;
    width: 66%;
    padding-top: 37.125%;
}

.product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Burger menu - hidden on desktop */
.burger-menu {
    display: none;
    background: none;
    border: 1px solid var(--primary-color, #473005);
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 10px;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-left: 16px;
    box-sizing: border-box;
    height: 40px;
}

.nav-page-title {
    display: none;
}

.burger-menu span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--tagline2-color, #473005);
    transition: transform 0.3s, opacity 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-summary-wrap {
        overflow-x: visible;
    }

    .pricing-summary-table {
        min-width: 0;
        font-size: 14px;
        display: block;
        border: none;
    }

    .pricing-summary-table thead {
        display: none;
    }

    .pricing-summary-table tbody {
        display: block;
    }

    .pricing-summary-table tbody tr {
        display: block;
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 12px;
        padding: 16px;
        background-color: var(--form-bg-color, rgba(255, 255, 255, 0.75));
        overflow: visible;
    }

    .pricing-summary-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .pricing-summary-table tbody td {
        display: block;
        padding: 8px 0;
        border: none;
    }

    .pricing-summary-table tbody td:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    .pricing-summary-table tbody td[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--primary-color, #473005);
        display: block;
        margin-bottom: 4px;
    }

    .pricing-summary-table tbody td[data-label=""]::before {
        display: none;
    }

    .pricing-summary-table tbody td:last-child {
        padding-top: 24px;
        overflow: visible;
        border-bottom: none !important;
    }

    .summary-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 0;
        width: 100%;
    }

    .burger-menu {
        display: flex;
        order: 1;
        margin-left: 0;
    }

    #mynavbar {
        overflow: visible;
        flex-direction: column;
    }

    .nav-page-title {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.65rem;
        font-weight: 600;
        color: var(--primary-color, #473005);
        padding: 4px 16px 8px;
        background-color: var(--navbar-bg-color, #ffffff);
    }

    .navbar-container {
        position: relative;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
        overflow: visible;
        width: 100%;
    }

    .logo-container {
        position: static;
        left: auto;
        transform: none;
        height: 72px;
        margin-left: 0;
        order: 2;
        flex: 0 0 auto;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        min-height: 44px;
        background-color: var(--navbar-bg-color, #ffffff);
        flex-direction: column;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        z-index: 1100;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
    }

    .navbar-links.mobile-open {
        display: flex !important;
    }

    .navbar-links .nav-link {
        color: #473005 !important;
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        display: block !important;
        text-align: left;
        background-color: var(--navbar-bg-color, #ffffff);
    }

    .navbar-buttons {
        display: contents;
    }

    .navbar-container .nav-signup-btn {
        order: 3;
    }

    .navbar-container .nav-login-btn {
        order: 4;
    }

    .nav-link {
        padding: 4px 24px;
        font-size: 16px;
        width: 100%;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 14px;
        margin-right: 0;
    }

    .cms-content {
        padding-top: 115px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
    }

    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.9rem !important; }
    h3 { font-size: 1.65rem !important; }

    .cms-content p,
    .cms-content li {
        font-size: 1.1rem;
    }

    .company-page .product-feature-text ul li {
        font-size: 1.1rem;
    }

    .company-page .product-feature-text ul li::before {
        font-size: 1.25rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
    }

    .pricing-card-name {
        font-size: 1.5rem;
    }

    .pricing-card-price {
        font-size: 2.2rem;
    }

    .pricing-card-features li {
        font-size: 1.1rem;
    }

    .pricing-card-description {
        font-size: 1.1rem;
    }

    .pricing-card-cta {
        font-size: 1.2rem;
        padding: 14px 32px;
    }

    .landing-footer {
        padding: 30px 20px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-social {
        gap: 16px;
    }

    .social-link i {
        font-size: 20px;
    }

    .x-icon {
        width: 20px;
        height: 20px;
    }

    .solutions-cards,
    .product-cards {
        flex-direction: column;
        align-items: center;
    }

    .solutions-cards {
        margin-bottom: 24px;
    }

    .solutions-card,
    .product-cards .solutions-card {
        max-width: 100%;
        width: 100%;
        padding: 28px 20px;
    }

    .product-video {
        width: 100%;
        padding-top: 56.25%;
    }

    .solutions-intro p,
    .solutions-details p,
    .solutions-quotes p {
        font-size: 1.1rem;
    }

    body.solutions-page .solutions-intro-2 {
        margin-bottom: 24px;
    }

    body.pricing-page .cms-content > .solutions-intro:first-child {
        margin-bottom: 20px;
    }

    .solutions-checklist-wrap {
        margin-left: -12px;
    }

    .solutions-checklist li {
        font-size: 1.5rem;
    }

    .solutions-checklist li::before {
        font-size: 1.65rem;
    }

    .solutions-cta-btn {
        font-size: 1.25rem;
        padding: 16px 40px;
    }

    .cs-layout {
        flex-direction: column;
        gap: 20px;
    }

    .cs-left {
        flex: none;
    }

    #contact-sales-modal {
        padding: 24px 18px 18px;
        width: 100%;
    }

    .contact-sales-benefits li {
        font-size: 1.2rem;
        padding-left: 24px;
    }

    .landing-strip {
        padding: 32px 16px;
        margin: 24px 0;
    }

    .landing-feature-subheading {
        font-size: 1.1rem;
    }

    .landing-cta-btn,
    .landing-cta-primary {
        font-size: 1.2rem;
        padding: 16px 36px;
    }

    .footer-nav {
        gap: 6px;
    }

    .footer-nav-link {
        font-size: 12px;
        padding: 4px 8px;
    }

    .product-features {
        margin-bottom: 8px;
    }

    .product-feature-row {
        margin-bottom: 40px;
    }

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

    body.product-page .cms-content:first-of-type {
        padding-bottom: 8px;
    }

    body.product-page .landing-strip {
        margin: 8px 0;
        padding: 12px 16px;
    }

    .solutions-cta-wrap {
        margin: 24px 0 20px;
    }
}

.sandbox-try-link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-middle-tone, #6b5434);
    text-decoration: none;
}
.sandbox-try-link:hover {
    text-decoration: underline;
}
