/* PageContainer — shared wrapper for ds-v2 pages.

   Reads the container spec tokens:
     --pb-container-max-width   (1200px desktop)
     --pb-container-padding-x   (20px desktop, 14px mobile)

   Any ds-v2 page or composite that wants to align with the page grid
   should either use <PageContainer> directly or consume these tokens
   on its own wrapper (see Footer.__container for the latter pattern). */

.PageContainer-module__container___YyBjM {
    max-width: var(--pb-container-max-width);
    padding-inline: var(--pb-container-padding-x);
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
}

/* TalkToSalesPage — contact-form layout for ds-v2.
   Used by: /talk-to-sales, /get-in-touch/raise-a-ticket
   (RaiseATicketPage imports this same module via cross-page import.)

   Tokens-only: every spacing, color, typography value comes from
   `tokens.css` (--pb-*), matching SecurityPage.module.css. No hardcoded
   colors or rems here.

   DSProvider resets `p`, `h1..h6`, `ul/ol/li`, `a`, `button` at (0,1,1).
   `:where(button|a)` and chained selectors below land at (0,2,0) and
   beat the resets. */

/* ── Page rhythm ──────────────────────────────────────────────────── */

.TalkToSalesPage-module__page___iYn2E {
    padding-block: var(--pb-space-64) var(--pb-space-80);
    color: var(--pb-text-default);
    font-family: var(--pb-font-sans);
}

@media (max-width: 767px) {
    .TalkToSalesPage-module__page___iYn2E {
        padding-block: var(--pb-space-40) var(--pb-space-48);
    }
}

/* ── Hero shell ───────────────────────────────────────────────────── */

.TalkToSalesPage-module__hero___seNh9 {
    background: linear-gradient(180deg, var(--pb-purple-10) 0%, var(--pb-surface-0) 70%);
    border-radius: var(--pb-radius-card);
    padding: var(--pb-space-48) var(--pb-space-24);
}

@media (max-width: 767px) {
    .TalkToSalesPage-module__hero___seNh9 {
        padding: var(--pb-space-32) var(--pb-space-16);
        border-radius: var(--pb-radius-16);
    }
}

.TalkToSalesPage-module__grid___WVgoD {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pb-space-40);
    max-width: 996px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 991px) {
    .TalkToSalesPage-module__grid___WVgoD {
        grid-template-columns: 1fr;
        gap: var(--pb-space-32);
        max-width: 560px;
    }
}

/* ── Left column ──────────────────────────────────────────────────── */

.TalkToSalesPage-module__leftCol___Jxd4p {
    display: flex;
    flex-direction: column;
    gap: var(--pb-space-48);
}

@media (max-width: 991px) {
    .TalkToSalesPage-module__leftCol___Jxd4p {
        gap: var(--pb-space-32);
    }
}

.TalkToSalesPage-module__headingWrap___w3f5i {
    display: flex;
    flex-direction: column;
    gap: var(--pb-space-12);
}

.TalkToSalesPage-module__avatarRow___ppMTS {
    display: flex;
    margin-bottom: var(--pb-space-16);
}

.TalkToSalesPage-module__avatar___wlW3S {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    border: 2px solid var(--pb-surface-0);
    border-radius: var(--pb-radius-full);
    margin-right: -1rem;
    object-fit: cover;
}

.TalkToSalesPage-module__title___tx9wO {
    color: var(--pb-text-heading);
    font-family: var(--pb-font-display);
    font-size: var(--pb-display-s-size);
    line-height: var(--pb-display-s-lh);
    letter-spacing: var(--pb-display-s-tracking);
    font-weight: var(--pb-weight-medium);
    margin: 0;
}

@media (max-width: 767px) {
    .TalkToSalesPage-module__title___tx9wO {
        font-size: var(--pb-display-xs-size);
        line-height: var(--pb-display-xs-lh);
    }
}

.TalkToSalesPage-module__lead___URjQe {
    color: var(--pb-text-body-web);
    font-size: var(--pb-font-size-l);
    line-height: var(--pb-lh-l);
    margin: 0;
}

.TalkToSalesPage-module__audienceList___mrGNK {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--pb-space-24);
    margin: 0;
    padding: 0;
    list-style: none;
}

.TalkToSalesPage-module__audienceItem___aCyIQ {
    display: flex;
    gap: var(--pb-space-16);
    align-items: flex-start;
    margin: 0;
}

.TalkToSalesPage-module__audienceIcon___Dzemg {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .TalkToSalesPage-module__audienceIcon___Dzemg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.TalkToSalesPage-module__audienceLabel___PJmP5 {
    color: var(--pb-text-heading);
    font-size: var(--pb-font-size-l);
    font-weight: var(--pb-weight-medium);
    margin: 0 0 var(--pb-space-4);
    line-height: var(--pb-lh-l);
}

.TalkToSalesPage-module__audienceDesc___NDx8s {
    color: var(--pb-text-subdued-1);
    font-size: var(--pb-font-size-m);
    line-height: var(--pb-lh-l);
    margin: 0;
}

/* ── Form panel ───────────────────────────────────────────────────── */

.TalkToSalesPage-module__formWrap___odEFK {
    width: 100%;
}

.TalkToSalesPage-module__form___mj6mb {
    display: flex;
    flex-direction: column;
    gap: var(--pb-space-24);
    width: 100%;
    padding: var(--pb-space-32);
    border-radius: var(--pb-radius-card);
    background-color: var(--pb-surface-0);
    box-shadow:
        0 1px 1px rgba(60, 42, 152, 0.02),
        0 3px 3px rgba(60, 42, 152, 0.04),
        0 12px 12px rgba(60, 42, 152, 0.04),
        0 24px 32px rgba(60, 42, 152, 0.04);
}

@media (max-width: 767px) {
    .TalkToSalesPage-module__form___mj6mb {
        padding: var(--pb-space-24) var(--pb-space-16);
    }
}

.TalkToSalesPage-module__fieldsWrap___kZm9D {
    display: flex;
    flex-direction: column;
    gap: var(--pb-space-16);
    width: 100%;
}

.TalkToSalesPage-module__row2___JpVqd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pb-space-16);
}

@media (max-width: 640px) {
    .TalkToSalesPage-module__row2___JpVqd {
        grid-template-columns: 1fr;
    }
}

/* ── Field primitives ─────────────────────────────────────────────── */

.TalkToSalesPage-module__fieldWrap___sfH3A {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

.TalkToSalesPage-module__fieldLabel___wp4R9 {
    margin: 0 0 var(--pb-space-4);
    color: var(--pb-text-subdued-1);
    font-size: var(--pb-font-size-m);
    font-weight: var(--pb-weight-regular);
    line-height: var(--pb-lh-m);
}

.TalkToSalesPage-module__requiredStar___la8by {
    color: var(--pb-text-error);
    margin-left: 2px;
}

/* Chained with `.fieldsWrap` so the rule has specificity (0,2,0), beating
   the DSProvider element-level resets at (0,1,1). Without this chain,
   `.root input { font-size: inherit }` would force browser-default 16px
   instead of our 14px (--pb-font-size-m). */
.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__input___leQYQ {
    height: var(--pb-space-40);
    padding: 0 var(--pb-space-12);
    border: 1px solid var(--pb-color-grey-40);
    border-radius: var(--pb-radius-input);
    background-color: var(--pb-surface-0);
    color: var(--pb-text-default);
    font-family: var(--pb-font-sans);
    font-size: var(--pb-font-size-m);
    line-height: var(--pb-lh-l);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    appearance: none;
}

/* Some textarea content uses larger padding — restore for textarea via .textarea below. */

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__input___leQYQ:focus {
    border-color: var(--pb-color-primary-60);
    outline: none;
}

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__input___leQYQ::placeholder {
    color: var(--pb-text-subdued-2);
}

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__inputError___bJ4uj,
.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__inputError___bJ4uj:focus {
    border-color: var(--pb-text-error);
}

.TalkToSalesPage-module__fieldError___ui5YB {
    margin: var(--pb-space-4) 0 0;
    color: var(--pb-text-error);
    font-size: var(--pb-font-size-s);
    line-height: var(--pb-lh-m);
    font-weight: var(--pb-weight-regular);
}

/* ── Phone field ─────────────────────────────────────────────────── */

.TalkToSalesPage-module__phoneRow___PzSkO {
    display: flex;
    width: 100%;
    border: 1px solid var(--pb-color-grey-40);
    border-radius: var(--pb-radius-input);
    background-color: var(--pb-surface-0);
    overflow: hidden;
    transition: border-color 0.2s;
    height: var(--pb-space-40);
}

.TalkToSalesPage-module__phoneRow___PzSkO:focus-within {
    border-color: var(--pb-color-primary-60);
}

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__dialCode___oA7JA {
    /* Show only the dial code (e.g. "+91"); ~25% of the row width. min-width
       fits the longest code (e.g. "+971") plus the chevron. */
    flex: 0 0 25%;
    min-width: 64px;
    max-width: 80px;
    height: 100%;
    padding: 0 22px 0 var(--pb-space-8);
    border: 0;
    border-right: 1px solid var(--pb-color-grey-40);
    background-color: var(--pb-surface-10);
    color: var(--pb-text-default);
    font-family: var(--pb-font-sans);
    font-size: var(--pb-font-size-m);
    line-height: 1;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27><path d=%27M6 9l6 6 6-6%27 stroke=%27%236E6D74%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.TalkToSalesPage-module__dialCode___oA7JA:focus {
    outline: none;
}

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__phoneInput___OSR53 {
    flex: 1 1 75%;
    height: 100%;
    padding: 0 var(--pb-space-12);
    border: 0;
    background: transparent;
    font-family: var(--pb-font-sans);
    font-size: var(--pb-font-size-m);
    color: var(--pb-text-default);
    width: 100%;
}

.TalkToSalesPage-module__phoneInput___OSR53:focus {
    outline: none;
}

/* ── Radio pills ──────────────────────────────────────────────────── */

.TalkToSalesPage-module__radioRow___wWHaf {
    display: flex;
    flex-wrap: wrap;
    gap: var(--pb-space-8);
}

.TalkToSalesPage-module__radioLabel___OnjbH {
    cursor: pointer;
    display: inline-flex;
    margin: 0;
}

.TalkToSalesPage-module__radioInput___uGsWA {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.TalkToSalesPage-module__radioPill___hnlce {
    display: inline-block;
    color: var(--pb-text-subdued-1);
    background-color: var(--pb-surface-10);
    border: 1px solid transparent;
    border-radius: var(--pb-radius-6);
    padding: var(--pb-space-6, 0.375rem) var(--pb-space-12);
    font-size: var(--pb-font-size-m);
    font-weight: var(--pb-weight-medium);
    line-height: var(--pb-lh-m);
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    -webkit-user-select: none;
            user-select: none;
}

.TalkToSalesPage-module__radioPill___hnlce:hover {
    background-color: var(--pb-surface-30);
}

.TalkToSalesPage-module__radioPillActive___EvbbF {
    background-color: var(--pb-color-primary-20);
    color: var(--pb-color-primary);
    border-color: var(--pb-color-primary-30);
}

.TalkToSalesPage-module__radioInput___uGsWA:focus-visible + .TalkToSalesPage-module__radioPill___hnlce {
    outline: 2px solid var(--pb-color-primary);
    outline-offset: 2px;
}

/* ── Select ───────────────────────────────────────────────────────── */

.TalkToSalesPage-module__selectWrap___rl4KI {
    position: relative;
    width: 100%;
}

/* Custom select that also bakes in the chevron via background-image so we
   don't double up with the native arrow. -moz-appearance/-webkit-appearance
   are required to suppress the native indicator across browsers. */
.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__select___MbK54 {
    cursor: pointer;
    padding-right: 36px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27><path d=%27M6 9l6 6 6-6%27 stroke=%27%236E6D74%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Hide the dropdown indicator on IE/Edge legacy. */
.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__select___MbK54::-ms-expand {
    display: none;
}

/* ── Textarea ─────────────────────────────────────────────────────── */

.TalkToSalesPage-module__fieldsWrap___kZm9D .TalkToSalesPage-module__textarea___gv8pL {
    height: 10.5rem;
    min-height: 5rem;
    max-height: 16rem;
    padding: var(--pb-space-12);
    resize: vertical;
    line-height: var(--pb-lh-l);
}

/* ── Terms checkbox ───────────────────────────────────────────────── */

.TalkToSalesPage-module__termsWrap___Ob0Dx {
    min-height: auto;
}

.TalkToSalesPage-module__termsLabel___NL1Va {
    display: flex;
    align-items: flex-start;
    gap: var(--pb-space-8);
    color: var(--pb-text-subdued-1);
    font-size: var(--pb-font-size-m);
    line-height: var(--pb-lh-l);
    cursor: pointer;
}

.TalkToSalesPage-module__checkbox___wQPeR {
    margin: 2px 0 0;
    width: 16px;
    height: 16px;
    accent-color: var(--pb-color-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.TalkToSalesPage-module__termsLink___L0O0w:where(a) {
    color: var(--pb-color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Submit button ────────────────────────────────────────────────── */

.TalkToSalesPage-module__submit___kKSS5:where(button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--pb-space-48);
    padding: var(--pb-space-12) var(--pb-space-32);
    border: 0;
    border-radius: var(--pb-radius-button);
    background-color: var(--pb-color-primary);
    color: var(--pb-color-white);
    font-family: inherit;
    font-size: var(--pb-font-size-l);
    font-weight: var(--pb-weight-medium);
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s;
}

.TalkToSalesPage-module__submit___kKSS5:where(button):hover:not(:disabled) {
    background-color: var(--pb-color-primary-60);
}

.TalkToSalesPage-module__submit___kKSS5:where(button):focus-visible {
    outline: 4px solid var(--pb-color-primary-60);
    outline-offset: 0;
}

.TalkToSalesPage-module__submit___kKSS5:where(button):disabled {
    background-color: var(--pb-color-grey-60);
    cursor: not-allowed;
}

/* ── Top-level form error ─────────────────────────────────────────── */

.TalkToSalesPage-module__formError___TfS82 {
    margin: 0;
    padding: var(--pb-space-12) var(--pb-space-16);
    border-radius: var(--pb-radius-8);
    background-color: var(--pb-color-primary-10);
    color: var(--pb-text-error);
    font-size: var(--pb-font-size-m);
    line-height: var(--pb-lh-m);
}

/* ── Success panel ────────────────────────────────────────────────── */

.TalkToSalesPage-module__success___r2DdH {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--pb-space-48) var(--pb-space-32);
    border-radius: var(--pb-radius-card);
    background-color: var(--pb-surface-0);
    box-shadow:
        0 1px 1px rgba(60, 42, 152, 0.02),
        0 3px 3px rgba(60, 42, 152, 0.04),
        0 12px 12px rgba(60, 42, 152, 0.04),
        0 24px 32px rgba(60, 42, 152, 0.04);
    min-height: 480px;
}

.TalkToSalesPage-module__successIcon___P8uSU {
    margin-bottom: var(--pb-space-16);
}

.TalkToSalesPage-module__successTitle___o0oYL {
    color: var(--pb-text-heading);
    font-family: var(--pb-font-display);
    font-size: var(--pb-font-size-2xl);
    font-weight: var(--pb-weight-medium);
    line-height: var(--pb-lh-xl);
    margin: 0 0 var(--pb-space-12);
}

.TalkToSalesPage-module__successPara___I6f9F {
    color: var(--pb-text-subdued-1);
    font-size: var(--pb-font-size-l);
    line-height: var(--pb-lh-l);
    margin: 0 0 var(--pb-space-24);
    max-width: 360px;
}

.TalkToSalesPage-module__successBack___JzYj8:where(a) {
    color: var(--pb-color-primary);
    font-weight: var(--pb-weight-medium);
    text-decoration: underline;
    text-underline-offset: 2px;
}

