@font-face {
  font-family: 'Geist';
  font-display: swap;
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/geist:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}

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

/* General styles */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font, 'Geist', sans-serif);
    background-color: var(--page-bg, #F7F6F3);
    color: var(--ink, #2A2A28);
    position: relative;
}

/* Typography — brand guideline hierarchy */
h1 {
    font-family: var(--display-font, 'Geist', sans-serif);
    font-size: 40px !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
h2 {
    font-family: var(--display-font, 'Geist', sans-serif);
    font-size: 28px !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
h3 {
    font-family: var(--body-font, 'Geist', sans-serif);
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.15;
}

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

/* Navigation bar styles */
#mynavbar {
    width: 100%;
    background-color: var(--surface, #E9E7E2);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--mid, #C8C2B4);
}

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

.logo-container {
    flex: 1;
}

.navbar-logo img {
    height: 50px;
    cursor: pointer;
}

.navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-link {
    color: var(--ink, #2A2A28);
    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(--ink, #2A2A28);
}

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

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

/* Burger menu - hidden on desktop */
.burger-menu {
    display: none;
    background: none;
    border: 1px solid var(--ink, #2A2A28);
    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;
}

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

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

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

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

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

.nav-btn {
    background-color: var(--surface, #E9E7E2);
    color: var(--ink, #2A2A28);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid var(--mid, #C8C2B4);
    text-align: center;
    margin-right: 8px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background-color: var(--page-bg, #F7F6F3);
    color: var(--ink, #2A2A28);
}

.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%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

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

.logo-container #favicon {
  /* Specific styles for the second image, if needed */
  height: 70%;
}

/* 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(--ink, #2A2A28);
}

/* ===== Homepage sections ===== */
.homepage-hero {
    margin-top: 100px;
    padding-bottom: 60px;
    text-align: center;
}

.hero-display {
    font-family: var(--display-font, 'Geist', sans-serif);
    font-size: 3.75rem !important;
    font-weight: 300 !important;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--ink, #2A2A28);
    margin-bottom: 24px;
}

.hero-body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink, #2A2A28);
    max-width: 52ch;
    margin: 0 auto 32px;
    opacity: 0.85;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
    margin-bottom: 16px;
}

.hero-microcopy {
    font-size: 13px;
    color: var(--mid, #C8C2B4);
    font-style: italic;
    margin-top: 8px;
}

.cta-ghost {
    background-color: transparent !important;
    color: var(--ink, #2A2A28) !important;
    border: 1px solid var(--mid, #C8C2B4) !important;
}

.cta-ghost:hover {
    color: var(--ink, #2A2A28) !important;
    opacity: 0.75;
}

.homepage-section {
    padding: 60px 0;
    text-align: center;
}

/* Video embed (16:9 responsive) */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface, #E9E7E2);
}

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

/* Screenshot */
.screenshot-container {
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--mid, #C8C2B4);
    display: block;
}

/* Video / screenshot placeholders (fallback when no content set) */
.video-placeholder,
.screenshot-placeholder {
    background: var(--surface, #E9E7E2);
    border: 2px dashed var(--mid, #C8C2B4);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder-icon {
    font-size: 36px;
    color: var(--mid, #C8C2B4);
    margin-bottom: 12px;
}

.video-placeholder-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink, #2A2A28);
    margin-bottom: 8px;
}

.video-placeholder-desc {
    font-size: 13px;
    color: var(--mid, #C8C2B4);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.5;
}

/* Social proof */
.social-proof-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--ink, #2A2A28);
    border-left: 3px solid var(--accent, #8FA79A);
    padding-left: 24px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    text-align: left;
    display: inline-block;
}

.social-proof-quote p {
    margin: 0 0 8px;
}

.social-proof-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    color: var(--mid, #C8C2B4);
}

/* Problem section */
.problem-section {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.problem-section p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink, #2A2A28);
    max-width: 65ch;
    opacity: 0.85;
    text-align: left;
}

/* Pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pillar-card {
    background: var(--surface, #E9E7E2);
    border: 1px solid var(--mid, #C8C2B4);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: left;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pillar-card h3 {
    margin-bottom: 8px;
    color: var(--ink, #2A2A28);
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink, #2A2A28);
    opacity: 0.8;
    margin: 0;
}

.screenshot-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink, #2A2A28);
    border-left: 3px solid var(--accent, #8FA79A);
    padding: 16px 20px;
    background: var(--surface, #E9E7E2);
    border-radius: 0 8px 8px 0;
    margin: 0;
    text-align: left;
}

.testimonial-quote p {
    margin: 0 0 8px;
}

.testimonial-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    color: var(--mid, #C8C2B4);
}

/* Use cases */
.use-cases {
    text-align: center;
}

.use-cases h2 {
    margin-bottom: 24px;
}

.use-cases a {
    color: var(--ink, #2A2A28);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: opacity 0.2s;
}

.use-cases a:hover {
    opacity: 0.7;
    color: var(--ink, #2A2A28);
}

.use-case-link {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink, #2A2A28);
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.2s;
}

.use-case-link:hover {
    opacity: 0.7;
    color: var(--ink, #2A2A28);
}

/* Final CTA */
.final-cta-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.final-cta-section h2 {
    margin-bottom: 28px;
}

.final-cta-section .hero-microcopy {
    margin-top: 16px;
}

#signup-form {
  width: 100%;
  text-align: left;
  border: 1px solid grey;
  padding: 18px 38px;
  border-radius: 9px;
  background-color: var(--surface, #E9E7E2);
  margin-top: -20px;
}


/* Make reCAPTCHA match input width */
#captcha {
    overflow: hidden;
    margin-bottom: -6px;
}

#captcha > div {
    transform-origin: 0 0;
}

#signup-form label {
  display: block;
  text-align: left;
  margin-bottom: 1px;
}

#signup-form .form-control {
  text-align: left; /* Align input text to the left */
}

#signup-form * {
    font-size: 16px;
}

.signup-form input,
.signup-form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

#login-btn {
  background-color: white;
  color: var(--ink, #2A2A28);
  border: 1px solid var(--ink, #2A2A28);
  padding: 7px;
  border-radius: 5px;
  text-decoration: none;
}

#login-btn:hover {
  color: var(--ink, #2A2A28);
}


.sign-up-btn {
    color: white;
    border: 1px solid var(--ink, #2A2A28);
    padding: 7px 11px 7px 11px;
    border-radius: 5px;
    text-decoration: none;
    background-color: var(--ink, #2A2A28);
    width: 100%;
}

.sign-up-btn:hover {
    color: white;
}



a#login-link {
    text-decoration: none;
}

a#login-link:hover {
    text-decoration: none;
}

/* CTA buttons */
.landing-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent, #8FA79A);
    color: var(--page-bg, #F7F6F3);
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease-out;
}

.landing-cta-btn:hover {
    opacity: 0.75;
    color: var(--page-bg, #F7F6F3);
    text-decoration: none;
}

.landing-cta-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
}

/* Landing strip — kept for product page compatibility */
.landing-strip {
    width: 100%;
    background-color: var(--surface, #E9E7E2);
    padding: 32px 40px;
    margin: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-feature-subheading {
    color: var(--ink, #2A2A28);
    margin: 0 0 12px 0;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {

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

    .burger-menu {
        display: flex;
    }

    #mynavbar {
        overflow: visible;
    }

    .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(--page-bg, #F7F6F3);
        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-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .burger-menu {
        order: 1;
    }

    .navbar-buttons {
        display: contents;
    }

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

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

    .navbar-links .nav-link {
        color: var(--ink, #2A2A28) !important;
        padding: 12px 24px;
        display: block !important;
        text-align: left;
        background-color: var(--page-bg, #F7F6F3);
    }

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

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

    .navbar-logo img {
        margin-bottom: 10px;
    }

    .logo-container {
        height: 72px;
        margin-bottom: 0;
        margin-top: 0;
    }

    #signup-form {
        margin-top: 16px;
        width: 93%;
        padding: 13px;
    }

    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 18px !important; }

    .hero-display {
        font-size: 2.5rem !important;
    }

    .homepage-hero {
        padding-bottom: 40px;
    }

    .homepage-section {
        padding: 40px 0;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .video-placeholder,
    .screenshot-placeholder {
        padding: 40px 24px;
    }

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

    .landing-cta-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .final-cta-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* Landing signup modal */
#landing-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: flex-start;
    padding-top: 21vh;
    justify-content: center;
}

#landing-signup-modal {
    background: var(--surface, #E9E7E2);
    border: 1px solid var(--ink, #2A2A28);
    border-radius: 10px;
    padding: 48px 56px 36px;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: var(--body-font, 'Geist', sans-serif);
    color: var(--ink, #2A2A28);
}

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

#landing-signup-modal .form-control {
    font-size: 16px;
    background-color: var(--page-bg, #F7F6F3);
    border-color: var(--mid, #C8C2B4);
}

#landing-signup-modal .g-recaptcha {
    background-color: transparent;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    max-width: 100%;
}

#landing-signup-modal .g-recaptcha > div {
    transform-origin: 0 0;
    transform: scale(0.88);
}

/* 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: flex-start;
    padding-top: 28vh;
    justify-content: center;
}

#login-modal-box {
    background: var(--surface, #E9E7E2);
    border: 1px solid var(--ink, #2A2A28);
    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(--body-font, 'Geist', sans-serif);
    color: var(--ink, #2A2A28);
}

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

#login-modal-box .form-control {
    font-size: 16px;
    background-color: var(--page-bg, #F7F6F3);
    border-color: var(--mid, #C8C2B4);
}

/* 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(--surface, #E9E7E2);
    border: 1px solid var(--ink, #2A2A28);
    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(--body-font, 'Geist', sans-serif);
    color: var(--ink, #2A2A28);
}

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

#forgot-pw-modal-box .form-control {
    font-size: 16px;
    background-color: var(--page-bg, #F7F6F3);
    border-color: var(--mid, #C8C2B4);
}

#forgot-pw-modal-box .forgot-pw-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    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;
}

/* Footer */
.landing-footer {
    background-color: var(--surface, #E9E7E2);
    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(--ink, #2A2A28);
    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(--ink, #2A2A28);
}

.footer-tagline {
    color: var(--ink, #2A2A28);
    font-size: 13px;
    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,
.social-link svg {
    font-size: 22px;
    color: #000 !important;
    fill: #000 !important;
}

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

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

.footer-legal a {
    color: var(--ink, #2A2A28);
    opacity: 0.5;
    text-decoration: none;
    font-size: 13px;
}

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

.footer-separator {
    margin: 0 8px;
    color: var(--mid, #C8C2B4);
}

.footer-copyright {
    flex: 1;
    text-align: right;
    font-size: 13px;
    color: var(--ink, #2A2A28);
    opacity: 0.5;
    font-weight: 500;
}

@media (max-width: 400px) {
    #landing-signup-modal .g-recaptcha {
        overflow: hidden;
        max-width: 100%;
    }
    #landing-signup-modal .g-recaptcha > div {
        transform-origin: 0 0;
        transform: scale(0.68);
    }
}
@media (min-width: 401px) and (max-width: 768px) {
    #landing-signup-modal .g-recaptcha {
        overflow: hidden;
        max-width: 100%;
    }
    #landing-signup-modal .g-recaptcha > div {
        transform-origin: 0 0;
        transform: scale(0.85);
    }
}
@media (max-width: 768px) {
    .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;
    }
}

/* Contact Sales modal (shared) */
#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: hidden;
    padding: 30px 15px;
}

#contact-sales-modal {
    background: var(--page-bg, #F7F6F3);
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 32px 56px 28px;
    width: 1080px;
    max-width: 95%;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.contact-sales-benefits li {
    font-size: 15px;
    padding: 5px 0 5px 30px;
    position: relative;
    color: var(--ink, #2A2A28);
    opacity: 0.85;
    line-height: 1.5;
}

.contact-sales-benefits li::before {
    content: "✔";
    color: var(--accent, #8FA79A);
    position: absolute;
    left: 0;
    font-size: 17px;
}

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

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

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

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

@media (max-width: 768px) {
    .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: 16px;
    }
}
