:root {
    --text-color: #fff; /* Default for dark mode */
    --accent-color: #06c; /* Blue accent for both */
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-size: 17px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

body.light {
    --text-color: #000; /* Black for light mode */
    background-color: #ffffff;
    color: #000000;
}

header {
    width: 100%;
    max-width: 980px;
    padding: 60px 20px 40px;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #999999;
}

body.light .subtitle {
    color: #333333;
}

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 20px;
    background-color: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: background-color 0.2s;
}

body.light .theme-toggle {
    background-color: #f5f5f7;
    color: #000000;
}

.theme-toggle:hover {
    background-color: #2c2c2e;
}

body.light .theme-toggle:hover {
    background-color: #e5e5e7;
}

.menu-toggle,
.lang-toggle,
.negotiation_style_toggle,
.schedule_meeting_toggle {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    font-size: 20px;
    background-color: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.menu-toggle:hover,
.lang-toggle:hover,
.negotiation_style_toggle:hover,
.schedule_meeting_toggle:hover {
    background-color: #2c2c2e;
}

body.light .menu-toggle,
body.light .lang-toggle,
body.light .negotiation_style_toggle,
body.light .schedule_meeting_toggle {
    background-color: #f5f5f7;
    color: #000000;
}

body.light .menu-toggle:hover,
body.light .lang-toggle:hover,
body.light .negotiation_style_toggle:hover,
body.light .schedule_meeting_toggle:hover {
    background-color: #e5e5e7;
}

.lang-toggle {
    right: 80px;
}

.negotiation_style_toggle {
    right: 140px;
}

.schedule_meeting_toggle {
    right: 200px;
}

.menu-dropdown,
.lang-dropdown,
.style-dropdown,
.schedule-meeting-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    background-color: #1d1d1f;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.lang-dropdown select,
.style-dropdown select {
    background-color: inherit;
    color: inherit;
    border: none;
    width: 100%;
    outline: none;
}

.schedule-meeting-dropdown button {
    background-color: inherit;
    color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
}

.schedule-meeting-dropdown button:hover {
    background-color: #2c2c2e;
}

body.light .schedule-meeting-dropdown button:hover {
    background-color: #e5e5e7;
}

.lang-dropdown .lang-label,
.style-dropdown .style-label,
.schedule-meeting-dropdown .schedule-meeting-label {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}

body.light .menu-dropdown,
body.light .lang-dropdown,
body.light .style-dropdown,
body.light .schedule-meeting-dropdown {
    background-color: #f5f5f7;
    color: #000000;
}

.lang-dropdown {
    right: 80px;
}

.style-dropdown {
    right: 140px;
}

.schedule-meeting-dropdown {
    right: 200px;
}

.live-status {
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.light .live-status {
    color: #666666;
}

.status-icon {
    font-size: 14px;
}

.live-badge {
    background-color: #808080;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 980px;
    font-size: 10px;
    font-weight: 600;
}

.cards-container {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 80px;
}

.card {
    background-color: #1d1d1f;
    padding: 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

body.light .card {
    background-color: #f5f5f7;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #999999;
}

body.light .card-title {
    color: #666666;
}

.card-badge {
    background-color: #34c759;
    color: #000000;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
}

.card-content {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

body.light .card-content {
    color: #000000;
}

.bottom-text {
    font-size: 14px;
    color: #999999;
    text-align: center;
    max-width: 800px;
    padding: 0 20px 40px;
}

body.light .bottom-text {
    color: #666666;
}

footer {
    width: 100%;
    background-color: #1d1d1f;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    color: #666666;
}

body.light footer {
    background-color: #f5f5f7;
    color: #666666;
}

.footer-link {
    color: #2997ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

body.light .footer-link {
    color: #0066cc;
}

.footer-link:hover {
    opacity: 0.8;
}

.x-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: baseline;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-top: -4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.x-link:hover {
    background-color: rgba(41, 151, 255, 0.1);
}

.x-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

body.light .x-link:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

/* Overlay/Modal */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

body.light .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay-content {
    background-color: #1d1d1f;
    padding: 70px 70px 10px 70px;
    border-radius: 18px;
    max-width: 600px;
    width: 90%;
    text-align: left;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

body.light .overlay-content {
    background-color: #ffffff;
}

.close-x {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #999999;
    cursor: pointer;
}

body.light .close-x {
    color: #666666;
}

.overlay-header {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.overlay .overlay-text {
    font-size: 17px;
    margin-bottom: 20px;
    color: #999999;
    text-align: left;
}

body.light .overlay .overlay-text {
    color: #000000;
}

.overlay-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.overlay-link {
    font-size: 17px;
    color: #2997ff;
    text-decoration: none;
    margin-bottom: 30px;
    display: block;
}

body.light .overlay-link {
    color: #0071e3;
}

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

.overlay-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

body.light .overlay-bottom {
    border-top: 1px solid #dddddd;
}

.overlay-bottom-text {
    font-size: 12px;
    color: #999999;
    margin: 0;
}

body.light .overlay-bottom-text {
    color: #333333;
}

.overlay-specialist {
    color: #2997ff;
    text-decoration: none;
    font-size: 12px;
}

body.light .overlay-specialist {
    color: #0071e3;
}

.overlay-specialist:hover {
    text-decoration: underline;
}

.overlay-person-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url("/static/images/specialist.jpeg");
    background-size: cover;
    background-position: center;
    background-color: #333333; /* Fallback */
}

body.light .overlay-person-image {
    background-color: #cccccc;
    border-radius: 50%;
}

/* Custom Form Styles */
.overlay input {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 17px;
    box-sizing: border-box;
}

body.light .overlay input {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
}

.overlay textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 17px;
    box-sizing: border-box;
}

body.light .overlay textarea {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
}

.overlay button {
    padding: 12px 24px;
    margin-bottom: 20px;
    font-size: 17px;
    background-color: #0071e3;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.overlay button:hover {
    background-color: #0077ed;
}

.overlay .overlay-header {
    text-align: left;
}

.overlay .overlay-link {
    text-align: left;
}

.overlay.overlay-center .overlay-header {
    text-align: center;
}

.overlay.overlay-center .overlay-link {
    text-align: center;
}

.overlay.overlay-center .overlay-bottom {
    align-items: center;
}

.overlay.overlay-center .overlay-bottom-text,
.overlay.overlay-center .overlay-specialist {
    text-align: center;
}

.overlay.overlay-center .overlay-text {
    text-align: center;
    color: #999999;
}

.overlay.overlay-left .overlay-text {
    color: #ffffff;
}

.overlay.overlay-left .overlay-text li em {
    color: #ffffff;
}

body.light .overlay .overlay-text {
    color: #000000;
}

body.light .overlay.overlay-center .overlay-text {
    color: #666666;
}

body.light .overlay.overlay-center .overlay-bottom-text,
body.light .overlay.overlay-center .overlay-specialist {
    color: #333333;
}

body.light .overlay.overlay-left .overlay-text {
    color: #000000;
}

body.light .overlay.overlay-left .overlay-text li em {
    color: #000000;
}

.overlay .overlay-text h2 {
    font-size: 21px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

body.light .overlay .overlay-text h2 {
    color: #000000;
}

.overlay .overlay-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #ffffff;
}

body.light .overlay .overlay-text h3 {
    color: #000000;
}

.overlay .overlay-text ul {
    text-align: left;
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

.overlay .overlay-text li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.overlay .overlay-text li strong {
    font-weight: 600;
}

.overlay .overlay-text li em {
    font-style: italic;
    color: #ffffff;
}

.overlay.overlay-center .overlay-text li em {
    color: #ccc;
}

body.light .overlay .overlay-text li em {
    color: #777;
}

body.light .overlay.overlay-center .overlay-text li em {
    color: #777;
}

.overlay .overlay-text p {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #ffffff;
}

body.light .overlay .overlay-text p {
    color: #000000;
}

#transcript-overlay .overlay .overlay-text {
    text-align: left;
}

#transcript-overlay .overlay .overlay-text h2 {
    text-align: left;
}

#transcript-overlay .overlay .overlay-text h3 {
    text-align: left;
}

#transcript-overlay .overlay .overlay-text p {
    text-align: left;
}

#transcript-overlay .overlay .overlay-text ul {
    text-align: left;
}

#feedback-overlay .overlay .overlay-text {
    text-align: left;
}

#feedback-overlay .overlay .overlay-text h2 {
    text-align: left;
}

#feedback-overlay .overlay .overlay-text h3 {
    text-align: left;
}

#feedback-overlay .overlay .overlay-text p {
    text-align: left;
}

#feedback-overlay .overlay .overlay-text ul {
    text-align: left;
}

.overlay.overlay-center .overlay-text,
.overlay.overlay-center .overlay-header,
.overlay.overlay-center .overlay-link {
    text-align: center;
}

.overlay.overlay-center .overlay-bottom {
    align-items: center;
}

.overlay.overlay-center .overlay-bottom-text,
.overlay.overlay-center .overlay-specialist {
    text-align: center;
}

/* Sub-footer styles */
.sub-footer {
    background-color: #000000;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    color: #999999;
}

body.light .sub-footer {
    background-color: #ffffff;
    color: #666666;
}

.sub-footer p {
    margin: 0;
    color: inherit;
}

.sub-footer-link {
    color: #2997ff;
    text-decoration: none;
}

body.light .sub-footer-link {
    color: #0066cc;
}

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

/* Apple-inspired pricing box styles */
.apple-pricing-containers {
    display: flex;
    justify-content: space-around;
}

.apple-pricing-box {
    border: 1px solid #ccc;
    padding: 15px;
    margin: 10px;
    flex: 1;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

body.light .apple-pricing-box {
    border: 1px solid #dddddd;
}

.apple-plan-title {
    font-family:
        "SF Pro Display",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.apple-plan-title-accent {
    color: var(--accent-color);
}

.apple-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0.5rem 0 1rem 0;
    white-space: nowrap;
}

.apple-price-amount {
    font-family:
        "SF Pro Display",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1;
    margin-right: 0.1rem;
}

.apple-price-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    vertical-align: super;
    margin-right: 0.2rem;
}

.apple-plan-description {
    font-family:
        "SF Pro Text",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin: 0.5rem 0 1rem 0;
    line-height: 1.4;
}

.apple-plan-description-accent {
    color: var(--accent-color);
}

.apple-sign-up-button {
    background-color: #1d4ed8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
}
.footer-beta {
    font-size: 14px;
    color: #999999;
    margin-right: 20px;
}

body.light .footer-beta {
    color: #666666;
}

/* Inline styles moved from homepage.html */
.negotiation-types {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.type-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}

body.light .type-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.type-button.selected,
.type-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

body.light .type-button.selected,
body.light .type-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

.type-button.coming-soon {
    cursor: pointer;
    opacity: 0.6;
}

.type-button.coming-soon:hover {
    border-color: inherit;
    color: inherit;
}

body.light .type-button.coming-soon {
    color: #999999;
    border-color: #999999;
}

.platform-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}

body.light .platform-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.platform-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

body.light .platform-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

.platform-button.coming-soon {
    cursor: pointer;
    opacity: 0.6;
}

.platform-button.coming-soon:hover {
    border-color: inherit;
    color: inherit;
}

.config {
    display: none;
}

.margin-top-20 {
    margin-top: 20px;
}

body.light .platform-button.coming-soon {
    color: #999999;
    border-color: #999999;
}

.cta-container {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.cta-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: #0071e3;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 280px;
    text-align: center;
}

.cta-button:hover {
    background-color: #0077ed;
}

.add-link {
    font-size: 17px;
    color: #2997ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

body.light .add-link {
    color: #0071e3;
}

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

.plus-icon {
    font-size: 14px;
    font-weight: bold;
}

.sales-pitch {
    font-size: 21px;
    font-weight: 400;
    max-width: 800px;
    text-align: center;
    color: #999999;
    margin: -20px 0 60px 0;
    padding: 0 20px;
}

body.light .sales-pitch {
    color: #333333;
}

/* Learn More Overlay Styles */
#learn-overlay .overlay-header {
    text-align: left;
    color: #ffffff;
}

#learn-overlay .overlay-text {
    text-align: left;
    color: #ffffff;
}

body.light #learn-overlay .overlay-header {
    color: #000000;
}

body.light #learn-overlay .overlay-text {
    color: #000000;
}

.i18n-loading [data-i18n] {
    visibility: hidden;
}

.i18n-ready [data-i18n] {
    visibility: visible;
}

/* Inline styles moved from homepage.html */
.negotiation-types {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.type-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}

body.light .type-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.type-button.selected,
.type-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

body.light .type-button.selected,
body.light .type-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

.type-button.coming-soon {
    cursor: pointer;
    opacity: 0.6;
}

.type-button.coming-soon:hover {
    border-color: inherit;
    color: inherit;
}

body.light .type-button.coming-soon {
    color: #999999;
    border-color: #999999;
}

.platform-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}

body.light .platform-button {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.platform-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

body.light .platform-button:hover {
    border-color: #0071e3;
    color: #0071e3;
}

.platform-button.coming-soon {
    cursor: pointer;
    opacity: 0.6;
}

.platform-button.coming-soon:hover {
    border-color: inherit;
    color: inherit;
}

body.light .platform-button.coming-soon {
    color: #999999;
    border-color: #999999;
}

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

.tip-link {
    color: inherit;
    cursor: pointer;
}

.tip-small {
    color: #888;
    font-size: 14px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-container {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.cta-button {
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    background-color: #0071e3;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 280px;
    text-align: center;
}

.cta-button:hover {
    background-color: #0077ed;
}

.add-link {
    font-size: 17px;
    color: #2997ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

body.light .add-link {
    color: #0071e3;
}

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

.plus-icon {
    font-size: 14px;
    font-weight: bold;
}

.sales-pitch {
    font-size: 21px;
    font-weight: 400;
    max-width: 800px;
    text-align: center;
    color: #999999;
    margin: -20px 0 60px 0;
    padding: 0 20px;
}

body.light .sales-pitch {
    color: #333333;
}

/* Learn More Overlay Styles */
#learn-overlay .overlay-header {
    text-align: left;
    color: #ffffff;
}

#learn-overlay .overlay-text {
    text-align: left;
    color: #ffffff;
}

body.light #learn-overlay .overlay-header {
    color: #000000;
}

body.light #learn-overlay .overlay-text {
    color: #000000;
}

.i18n-loading [data-i18n] {
    visibility: hidden;
}

.i18n-ready [data-i18n] {
    visibility: visible;
}
