/*
Theme Name: Twenty2
Theme URI: Twenty2
Author: Twenty2
Description: WordPress theme converted from a static HTML export.
Version: 1.0.0
Text Domain: Twenty2
*/

/* ================================================
   1. Font Faces
   ================================================ */

   @font-face {
    font-family: "Aeonik";
    src:
        url("https://twentytwo1.wpenginepowered.com/wp-content/themes/Twenty2/assets/fonts/AeonikTRIAL-Regular.woff2") format("woff2"),
        url("https://twentytwo1.wpenginepowered.com/themes/Twenty2/assets/fonts/AeonikTRIAL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors — extracted from Figma fills */
    --color-bg: #f3f4f1;
    --color-white: #ffffff;
    --color-dark: #111111;
    --color-dark-deep: #2c1448;
    --color-text: #111111;
    --color-text-muted: #555555;
    --color-text-subtle: #717182;
    --color-text-light: #8a8a8a;
    --color-accent: #3b82f6;
    --color-border: #dbdbdb;
    --color-footer-bg: #030303;
    --color-metrics-bg: #111111;

    /* Typography */
    --font-heading: "Miriam Libre", Georgia, serif;
    --font-body: "Aeonik", system-ui, sans-serif;
    --font-accent: "Aeonik", system-ui, sans-serif;

    /* Font sizes — from Figma nodes */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-md: 18px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 32px;
    --fs-3xl: 40px;
    --fs-4xl: 56px;
    --fs-5xl: 80px;
    --fs-6xl: 96px;

    /* Font weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Line heights */
    --lh-tight: 1.1;
    --lh-snug: 1.25;
    --lh-base: 1.5;
    --lh-relaxed: 1.6;

    /* Spacing — from Figma Auto Layout padding/gap */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-2xl: 48px;
    --sp-3xl: 64px;
    --sp-4xl: 80px;
    --sp-5xl: 100px;

    /* Layout */
    --container-max: 1280px;
    --container-pad: 100px;
    --page-width: 1280px;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ================================================
     2. Reset & Base
     ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

em {
    font-style: normal;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 0 6px 2px;
    border-radius: var(--radius-sm);
}

/* ================================================
     3. Typography
     ================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: var(--lh-snug);
    color: var(--color-text);
}

/* ================================================
     4. Layout Utilities
     ================================================ */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    position: relative;
}

@media (max-width: 1280px) {
/*     .container {
        padding-inline: 48px;
    } */
}

/* ================================================
     5. Buttons
     ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    line-height: 1;
    cursor: pointer;
    transition:
        opacity 0.2s ease,
        transform 0.15s ease;
    white-space: nowrap;
    min-width: 200px;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn--primary {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}

.btn--dark {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}

.btn--light {
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-white);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn--sm {
    padding: 10px 20px;
    font-size: var(--fs-sm);
}

/* ================================================
     6. Header & Navigation
     ================================================ */

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 102;
    will-change: transform;
}
main#main-content {
    margin-top: 0;
}

.nav {
    padding: 25px 0;
}

.nav__container {
    max-width: var(--page-width);
    margin-inline: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

#menu-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-inline: auto;
    border: 1px solid #d9d9d9;
    border-radius: 100px;
    padding: 10px 28px;
    background: #ffffff66;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: var(--fw-regular);
    color: #161716;
    transition: color 0.15s ease;
}

.nav__link:hover {
    color: var(--color-accent);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav__login {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: var(--fw-regular);
    color: #2c2c2c;
    transition: color 0.15s;
    border: 1px solid #2c2c2c;
    border-radius: 100px;
    padding: 10px 28px;
    background: #ffffff66;
    height: 43px;
}

.nav__login:hover {
    color: var(--color-accent);
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__actions .btn--dark {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: var(--radius-full);
    min-width: auto;
    height: 43px;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.nav__hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ================================================
     7. Hero Section
     ================================================ */
.hero {
    position: relative;
    min-height: 775px;
    /* overflow: hidden; */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
    padding-top: 130px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg-img, .hero__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.hero__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.hero__mockup {
    position: relative;
    z-index: 1;
    width: 690px;
    height: 351px;
    border-radius: 12px;
    /* overflow: hidden; */
    margin: 0 auto -16px;
}

.hero__mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: 96px;
    line-height: 1.05;
    color: #111111;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero__subtext {
    font-family: var(--font-body);
    font-size: 18px;
    color: #555555;
    max-width: 640px;
    line-height: var(--lh-relaxed);
    margin-bottom: 28px;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero__offer {
    font-family: var(--font-body);
    font-size: 16px;
    color: #8a8a8a;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

/* ================================================
     8. AI Assistants Section
     ================================================ */
.ai-assistants {
    background-color: #f6f6f5;
    padding-bottom: 80px;
}

.ai-assistants__header {
    text-align: center;
    margin-bottom: 34px;
}

.ai-assistants__heading {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    line-height: 1.3;
}

.ai-assistants__subtext {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-inline: auto;
    line-height: var(--lh-relaxed);
    letter-spacing: -0.1px;
}

/* Tabs */
.tabs {
    margin-bottom: 36px;
}

.tabs__list {
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
    flex-wrap: wrap;
}

.tabs__btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-dark);
    background: transparent;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
        font-weight: 600;
}

.tabs__btn--active {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.tabs__btn:not(.tabs__btn--active):hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* AI Assistants Content */
.ai-assistants__content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: stretch;
    margin-inline: auto;
}

.ai-assistants__cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
    background-color: transparent;
}

.assistant-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: var(--purple);
    box-shadow: 0 0 0 1px rgba(184, 171, 255, 0.08);
}

.assistant-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assistant-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: #0a0a0a;
}

.assistant-card__style {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text-subtle);
    margin-top: 2px;
}

.ai-assistants__visual {
    background-color: #f6f6f6;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    min-height: 254px;
    display: grid;
    place-items: center;
}

.ai-assistants__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 52%;
    transform: translateY(2px) scale(1.01);
}

/* ================================================
     9. One Platform Section
     ================================================ */

.platform__heading {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--color-dark);
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

/* Platform tabs */
.platform-tabs {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d6d6d6;
}

.platform-tabs__list {
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.platform-tabs__list li {
    width: 100%;
}

.platform-tabs__btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
    flex: 0 0 auto;
    text-align: center;
    letter-spacing: -0.15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.platform-tabs__btn--active {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: var(--color-white);
}

.platform-tabs__btn:not(.platform-tabs__btn--active):hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Platform panels */
.platform-panels {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.platform-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    min-height: 246px;\
    align-items: center;
}

.platform-panel--active {
    display: grid;
}

.platform-panel__title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    font-weight: 600;
    
    
    
    
    h2 {
    font-weight: 600;
};
}

.platform-panel__desc {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
}

.platform-panel__use-cases {
    display: none;
}

.platform-panel__use-cases li {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    background-color: var(--color-bg);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

#platform-campaign-manager .platform-panel__visual::before {
    background: radial-gradient(240px 200px at 55% 55%, rgba(155, 120, 255, 0.22), transparent 70%),
        radial-gradient(260px 220px at 42% 55%, rgba(120, 210, 255, 0.16), transparent 72%);
}

#platform-telephony-manager .platform-panel__visual::before {
    background: radial-gradient(260px 220px at 58% 52%, rgba(170, 120, 255, 0.2), transparent 70%),
        radial-gradient(260px 220px at 42% 52%, rgba(255, 170, 130, 0.12), transparent 72%);
}

#platform-analytics-actions .platform-panel__visual::before {
    background: radial-gradient(260px 220px at 58% 52%, rgba(150, 120, 255, 0.2), transparent 70%),
        radial-gradient(260px 220px at 44% 52%, rgba(170, 220, 255, 0.14), transparent 72%);
}

.platform-panel__mockup {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
    transform: translateX(32px);
}

.platform-panel__img {
    width: min(520px, 100%);
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.platform-panel__img--ai {
    transform: translateX(56px) translateY(4px);
}

/* Assistant panel mockup */
.assistant-badge {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: 20px;
    padding: 10px 16px;
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: inline-block;
}

.assistant-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assistant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg);
    transition: background 0.15s;
}

.assistant-item--active {
    background-color: #e8e9e5;
}

.assistant-item__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.assistant-item strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #0a0a0a;
    display: block;
}

.assistant-item small {
    font-size: 12px;
    color: var(--color-text-subtle);
}

/* Campaign UI mockup */
.campaign-ui {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.campaign-ui__header {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: #1d1d1d;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.campaign-ui__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-bg);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    color: var(--color-dark-deep);
}

.campaign-ui__time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 12px;
    color: var(--color-dark-deep);
}

.campaign-ui__file {
    font-size: var(--fs-sm);
    color: var(--color-dark-deep);
}

.campaign-ui__file small {
    color: #6e637b;
    margin-left: 8px;
}

/* Telephony UI mockup */
.telephony-ui {
    text-align: center;
    padding: 8px;
}

.telephony-ui__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-dark-deep);
    margin-bottom: 12px;
}

.telephony-ui__desc {
    font-size: var(--fs-sm);
    color: var(--color-dark-deep);
    line-height: var(--lh-relaxed);
    margin-bottom: 20px;
}

.telephony-ui__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Analytics UI mockup */
.analytics-ui {
    font-size: 12px;
}

.analytics-ui__header {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: 12px;
}

.analytics-ui__waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
    margin-bottom: 12px;
}

.waveform-bar {
    flex: 1;
    background-color: var(--color-accent);
    border-radius: 2px;
    opacity: 0.7;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}
.waveform-bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.1s;
}
.waveform-bar:nth-child(3) {
    height: 55%;
    animation-delay: 0.2s;
}
.waveform-bar:nth-child(4) {
    height: 90%;
    animation-delay: 0.3s;
}
.waveform-bar:nth-child(5) {
    height: 65%;
    animation-delay: 0.4s;
}
.waveform-bar:nth-child(6) {
    height: 45%;
    animation-delay: 0.5s;
}
.waveform-bar:nth-child(7) {
    height: 80%;
    animation-delay: 0.6s;
}
.waveform-bar:nth-child(8) {
    height: 50%;
    animation-delay: 0.7s;
}

@keyframes waveAnim {
    0%,
    100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.3);
    }
}

.analytics-ui__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.analytics-ui__tab {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-medium);
    color: var(--color-dark-deep);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
}

.analytics-ui__tab--active {
    background-color: var(--color-bg);
    font-weight: var(--fw-semibold);
}

.analytics-ui__label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: 6px;
    margin-top: 8px;
}

.analytics-ui__text {
    font-size: 10px;
    color: #808080;
    line-height: 1.5;
}

/* ================================================
     10. We Understand Section
     ================================================ */
.we-understand {
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
}

.we-understand__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.we-understand__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.we-understand__content {
    position: relative;
    z-index: 1;
    padding-top: var(--sp-4xl);
    padding-bottom: var(--sp-4xl);
    display: flex;
    align-items: center;
    min-height: 378px;
}

.we-understand__heading {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.we-understand__desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

.container.we-understand__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 72px;
}

/* ================================================
     11. Metrics Section
     ================================================ */
.metrics {
    position: relative;
    background: url(https://sr-website-01.shiprocket.in/sr-website/Metrics-sSRs7y.png);
    padding: 88px 0;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
}

.metrics::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(1200px 560px at 65% 55%, rgba(88, 130, 255, 0.22), transparent 65%),
        radial-gradient(900px 520px at 55% 65%, rgba(139, 92, 246, 0.22), transparent 70%),
        radial-gradient(520px 420px at 72% 40%, rgba(34, 211, 238, 0.1), transparent 70%),
        radial-gradient(700px 420px at 20% 50%, rgba(0, 0, 0, 0.55), transparent 70%),
        linear-gradient(
            90deg,
            rgba(11, 11, 11, 0.95) 0%,
            rgba(11, 11, 11, 0.8) 35%,
            rgba(11, 11, 11, 0.35) 70%,
            rgba(11, 11, 11, 0.8) 100%
        );
    filter: blur(0px);
    opacity: 1;
    pointer-events: none;
}

.metrics .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.metrics__cta-heading {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.metrics__cta-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: #FFFFFF99;
    line-height: var(--lh-relaxed);
    margin-bottom: 28px;
}

.metrics__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.metric-item {
	border-radius: 14px;
    padding: 34px 34px 28px;
    text-align: center;
    background: #121212B2;
    backdrop-filter: blur(100px);
	text-align: center;
}

.metric-item--wide {
    grid-column: 1 / -1;
    padding-bottom: 22px;
}

.metric-item__value {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: var(--fw-bold);
    background: linear-gradient(90deg, #68c2ff 0%, #6a88ff 55%, #67a0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1.4px;
}

.metric-item__label {
    font-family: var(--font-body);
    color: #FFFFFFCC;
}

.metric-item__bar {
    margin-top: 22px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5b49ff 0%, #6a88ff 30%, #4b5563 100%);
    opacity: 0.65;
}

/* ================================================
     12. Real-time Insight Section
     ================================================ */
.realtime {
    padding: 75px 0 115px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(900px 520px at 30% 20%, rgba(198, 200, 249, 1) 0%, rgba(198, 200, 249, 0) 70%), radial-gradient(900px 520px at 55% 55%, rgba(234, 212, 251, 1) 0%, rgba(234, 212, 251, 0) 70%), radial-gradient(900px 520px at 90% 70%, rgba(112, 177, 241, 1) 0%, rgba(112, 177, 241, 0) 70%), linear-gradient(180deg, #c6c8f9 0%, #ead4fb 50%, #70b1f1 100%);
}

.realtime__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.realtime__insight {
    display: none;
}

.realtime__text {
    font-family: var(--font-body);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    background-color: var(--color-dark);
    padding: 32px;
    border-radius: var(--radius-xl);
    line-height: var(--lh-snug);
}

/* Chat bubbles */
.realtime__chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    padding: 20px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.chat-bubble--user {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.chat-bubble--user p {
    font-family: var(--font-heading);
    font-size: 17px;
    color: #595959;
    line-height: var(--lh-snug);
    margin-bottom: 12px;
}

.chat-bubble--ai {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    margin-left: 24px;
}

.chat-bubble--ai p {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    color: var(--color-dark);
    line-height: var(--lh-snug);
    margin-bottom: 12px;
}

.chat-bubble__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 19px;
    color: #555555;
    padding: 6px 12px;
    background-color: var(--color-bg);
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
}

.chat-bubble__logo {
    width: 32px;
    height: 32px;
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: var(--fw-bold);
    margin-bottom: 12px;
}

/* Real-time CTA */
.realtime__cta {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.realtime__cta-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    color: #08101c;
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.realtime__cta-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: #555555;
    line-height: var(--lh-relaxed);
    margin-bottom: 20px;
}

.realtime__cta .btn--outline {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #08101c;
}

/* ================================================
     13. Footer
     ================================================ */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 175px;
    position: relative;
}

.footer__top {
    display: grid;
    grid-template-columns: 368px 1fr;
    gap: 80px;
    align-items: start;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer__logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    filter: invert(1);
    opacity: 0.9;
}

.footer__tagline {
    font-family: var(--font-body);
    color: #FFFFFFB2;
    line-height: var(--lh-relaxed);
    margin-bottom: 24px;
}

.footer__social-label {
    font-family: var(--font-heading);
    color: #646464;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer__social-links {
    display: flex;
    gap: 16px;
}

.footer__social-links a {
    width: 36px;
    height: 36px;
    background-color: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.footer__social-links a:hover {
    background-color: #1c1c1c;
    color: #d2d2d2;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer__nav-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #646464;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-col a {
    font-family: var(--font-body);
    color: #FFFFFFBF;
    transition: color 0.15s;
}

.footer__nav-col a:hover {
    color: #d2d2d2;
}

.footer__watermark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(120px, 18vw, 220px);
    letter-spacing: -1px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #4d4d4d87;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.footer__top,
.footer__bottom {
    position: relative;
    z-index: 1;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 0;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: #FFFFFF80;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    color: #FFFFFF80;
    transition: color 0.15s;
}

.footer__legal a:hover {
    color: #d2d2d2;
}

/* ================================================
     14. Responsive Breakpoints
     ================================================ */

@media (max-width: 1024px) {

    .ai-assistants__content {
        grid-template-columns: 1fr;
    }

    .platform-panel {
        grid-template-columns: 1fr;
    }

    .platform-panel__visual {
        display: none;
    }

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

    .realtime__cta {
        grid-column: 1 / -1;
    }

    .metrics .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
	.realtime {
    padding: 40px 0 80px;
    text-align: center;
}
	.hero__background {
    margin-top: -137px;
}
	.cta-banner {
    padding: 40px 0 !important;
}

.cta-banner__inner {
    gap: 20px;
}

.cta-banner__inner img {
    display: none;
}

.cta-banner__inner h2.platform-panel__title {
    font-size: 28px;
}
	.metric-item {
    padding: 20px;
}

	.nav__logo-img {
    height: 33px;
}
	main#main-content {
    margin-top: 0;
    overflow: hidden;
}
	.nav__container {
    padding: 0 15px;
}
    :root {
        --container-pad: 24px;
    }
	.hero__mockup {
    width: calc(100% - 30px);
    height: auto;
}
	
    .faq {
        padding: 50px 0 100px !important;
    }
	
	.faq__heading {
		margin-bottom: 30px !important;
	}

    #menu-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        left: 15px;
        right: 15px;
        top: 110px;
        background-color: #f3f4f1e3;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 8px 0;
        z-index: 100;
        /* Animate with opacity/visibility/transform — display is not animatable */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        pointer-events: none;
        will-change: opacity, transform;
    }

    #menu-nav.nav__links--open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* Mobile menu items — larger touch targets */
    #menu-nav > .menu-item {
        width: 100%;
        list-style: none;
    }

    #menu-nav > .menu-item > a,
    #menu-nav .nav__link {
        display: block;
        padding: 14px 20px;
        font-size: 16px;
        font-family: var(--font-heading);
        font-weight: var(--fw-regular);
        color: #161716;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: background-color 0.15s ease, color 0.15s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    #menu-nav > .menu-item:last-child > a,
    #menu-nav > .menu-item:last-child .nav__link {
        border-bottom: none;
    }

    #menu-nav > .menu-item > a:hover,
    #menu-nav .nav__link:hover {
        background-color: rgba(0, 0, 0, 0.04);
        color: var(--color-accent);
    }

    /* Hamburger → X animation */
    .nav__hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav__hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
	.hero__subtext {
    margin-bottom: 10px;
}

.hero__cta-group {
    margin-bottom: 15px;
}

.hero__tagline {
    margin-bottom: 0;
}

    /* Overlay backdrop */
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 99;
    }

    .nav__overlay--visible {
        display: block;
    }

    .nav__hamburger {
        display: flex;
		        margin-left: -40px;
    }

    .nav__actions .btn--dark {
        display: none;
    }

        .nav__login {
        padding: 7px 24px;
        height: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero__content {
        padding: 25px 15px 50px;
        max-width: 100%;
    }

    .hero__heading {
        font-size: 44px;
        line-height: 1.3;
    }

    .ai-assistants__heading {
        font-size: 36px;
    }

    .platform__heading {
        font-size: 36px;
    }

    .platform-tabs__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .platform-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .platform-tabs__btn {
        font-size: var(--fs-base);
        padding: 10px 16px;
        flex-shrink: 0;
    }

    .tabs__list {
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-xl);
    }

    .tabs__btn {
        width: 100%;
        text-align: center;
    }

    .realtime__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-panel__info {
        padding: 24px;
    }

    .we-understand__heading {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .metrics__cta-heading {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .metric-item__value {
        font-size: 56px;
    }

    .realtime__cta-heading {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
	
	section.we-understand {
    text-align: center;
}

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
	
	.realtime__cta {
    order: 1;
}

.realtime__chat {
    order: 2;
}

    .footer__watermark {
        font-size: clamp(96px, 22vw, 160px);
        bottom: 32px;
    }
	
}

@media (max-width: 480px) {

    .hero__tagline {
        font-size: var(--fs-md);
    }

    .ai-assistants__heading,
    .platform__heading {
        font-size: 28px;
    }

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

:root {
    --bg: #efefed;
    --surface: #f6f6f5;
    --surface-2: #f8f8f7;
    --card: #f3f3f2;
    --text: #0d0d0d;
    --muted: #555555;
    --muted-2: #7c7c79;
    --border: #d4d4d1;
    --border-soft: #dfdfdc;
    --active: #0b0b0b;
    --white: #ffffff;
    --purple: #b8abff;
    --purple-2: #cba7ff;
    --blue: #6d78ff;
    --blue-2: #8fc4ff;
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.04);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --container: 1240px;
    --header-offset: 0px;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
       DEMO SECTION WRAPPER
    ========================== */
.demo-spacer {
    height: 40px;
}

/* =========================
       AI ASSISTANTS SECTION
    ========================== */

.ai-assistants__header {
    max-width: 980px;
    margin: 60px auto 34px;
    text-align: center;
}

/* =========================
       STICKY TABS
    ========================== */
.ai-assistants__tabs-wrap {
    position: sticky;
    top: var(--header-offset);
    z-index: 20;
    background: linear-gradient(to bottom, rgba(239, 239, 237, 0.96), rgba(239, 239, 237, 0.92));
    backdrop-filter: blur(8px);
    padding: 8px 0 18px;
    margin: 0 auto 34px;
}

.tabs {
    display: flex;
    justify-content: center;
}

.tabs__list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #ffffff;
    border: 1px solid #d0d0cd;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
}

.tabs__list::-webkit-scrollbar {
    display: none;
}

.tabs__btn--active {
    background: #0b0b0b;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* =========================
       SECTIONS
    ========================== */
.ai-assistants__sections {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.assistant-section {
    scroll-margin-top: 140px;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.assistant-section__content {
    display: grid;
    grid-template-columns: 412px minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Left stack */
.ai-assistants__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.assistant-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 86px;
    background: transparent;
    border: 1.25px solid var(--border-soft);
    border-radius: 18px;
    padding: 16px 16px 16px 16px;
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        background 200ms ease,
        transform 200ms ease;
}

.assistant-card.is-featured {
    border-color: var(--purple);
    box-shadow: 0 0 0 1px rgba(184, 171, 255, 0.08);
    background-color: #ffffff;
}

.assistant-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.assistant-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 54px;
    background: linear-gradient(135deg, #dddddb, #f5f5f4);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #111;
}

.assistant-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assistant-card__info {
    min-width: 0;
}

.assistant-card__style {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: #70707b;
}

.assistant-card__action {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    flex: 0 0 40px;
    background: transparent;
    padding: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.assistant-card__action:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.assistant-card__action img {
    width: 40px;
    height: 40px;
    display: block;
    pointer-events: none;
}

/* Right visual */
.ai-assistants__visual {
    min-height: 296px;
    border: 1.25px solid var(--border-soft);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(
            circle at 52% 48%,
            rgba(197, 184, 255, 0.55) 0%,
            rgba(197, 184, 255, 0.15) 14%,
            rgba(197, 184, 255, 0) 34%
        ),
        radial-gradient(
            circle at 58% 50%,
            rgba(255, 214, 192, 0.42) 0%,
            rgba(255, 214, 192, 0.13) 16%,
            rgba(255, 214, 192, 0) 34%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.28));
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 296px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.voice-visual__bar.is-left {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.26));
}

.voice-visual__bar.is-right {
    background: linear-gradient(180deg, #6d78ff 0%, #b794ff 100%);
    opacity: 1;
}

.voice-visual__core {
    position: relative;
    z-index: 2;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: #080808;
    display: grid;
    place-items: center;
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.52),
        0 16px 40px rgba(152, 132, 255, 0.18);
}

.voice-visual__core svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    display: block;
}

.voice-visual__sparkle {
    position: absolute;
    right: 30px;
    top: 20px;
    width: 16px;
    height: 16px;
    fill: #fff;
    opacity: 0.95;
}

/* Hide extra section text so layout stays like mock */
.assistant-section__meta {
    display: none;
}

/* =========================
       RESPONSIVE
    ========================== */
@media (max-width: 1100px) {
    .assistant-section__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .assistant-section {
        min-height: auto;
    }

    .ai-assistants__visual {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }
    /* section-level padding removed — pin-inner handles spacing */
}

/* ================================================
     9. One Platform Section
     ================================================ */
.platform {
    padding: 0;
    background: var(--white);
    padding-bottom: 40px;
}

.platform__header {
	margin-top: 70px;
	margin-bottom: 34px;
}

/* Reuse .tabs / .tabs__list / .tabs__btn — only override container placement */
.platform__tabs-wrap {
}

.platform__tabs-wrap .tabs {
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* Platform panels — all always rendered and stacked for scroll-spy */
.platform-panels {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.platform-panel {
    display: grid;
    grid-template-columns: 412px minmax(0, 1fr);
    gap: 74px;
    min-height: 320px;
    align-items: center;
    scroll-margin-top: 160px;
    border-bottom: 1px solid var(--border-soft);
}

.platform-panel:last-child {
    border-bottom: none;
}

.platform-panel__info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 412px;
}

.platform-panel__tagline {
    font-size: 20px;
    color: #3B82F6;
    margin: 0 0 8px;
    font-family: var(--font-body);
}

.platform-panel__use-cases {
    display: none;
}

.platform-panel__visual {
    display: flex;
    justify-content: end;
    padding: 0;
    position: relative;
    min-height: 260px;
    overflow: visible;
}

.platform-panel__visual::before {
    content: "";
    position: absolute;
    inset: -60px -60px -60px -60px;
    background: radial-gradient(220px 180px at 55% 45%, rgba(140, 120, 255, 0.25), transparent 70%),
        radial-gradient(260px 200px at 45% 55%, rgba(255, 150, 120, 0.18), transparent 72%);
    filter: blur(18px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

#platform-campaign-manager .platform-panel__visual::before {
    background: radial-gradient(240px 200px at 55% 55%, rgba(155, 120, 255, 0.22), transparent 70%),
        radial-gradient(260px 220px at 42% 55%, rgba(120, 210, 255, 0.16), transparent 72%);
}

#platform-telephony-manager .platform-panel__visual::before {
    background: radial-gradient(260px 220px at 58% 52%, rgba(170, 120, 255, 0.2), transparent 70%),
        radial-gradient(260px 220px at 42% 52%, rgba(255, 170, 130, 0.12), transparent 72%);
}

#platform-analytics-actions .platform-panel__visual::before {
    background: radial-gradient(260px 220px at 58% 52%, rgba(150, 120, 255, 0.2), transparent 70%),
        radial-gradient(260px 220px at 44% 52%, rgba(170, 220, 255, 0.14), transparent 72%);
}

.platform-panel__mockup {
    background-color: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
}

.platform-panel__img {
    width: min(520px, 100%);
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.platform-panel__img--ai {
    transform: translateX(40px) translateY(4px);
}

/* Platform visual: voice orb (reuse voice-visual styles) */
.platform-panel__orb-wrap {
    position: relative;
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.25px solid var(--border-soft);
    border-radius: 20px;
    background: radial-gradient(
            circle at 52% 48%,
            rgba(197, 184, 255, 0.55) 0%,
            rgba(197, 184, 255, 0.15) 14%,
            rgba(197, 184, 255, 0) 34%
        ),
        radial-gradient(
            circle at 58% 50%,
            rgba(255, 214, 192, 0.42) 0%,
            rgba(255, 214, 192, 0.13) 16%,
            rgba(255, 214, 192, 0) 34%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.28));
    overflow: hidden;
}

/* Use case pill badges floating in the visual */
.platform-panel__badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.platform-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 10px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

.platform-badge__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0b0b0b;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.platform-badge__icon svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.platform-badge--top {
    top: 18%;
    left: 8%;
}
.platform-badge--right {
    top: 30%;
    right: 4%;
}
.platform-badge--bottom {
    bottom: 16%;
    left: 14%;
}

/* Responsive */
@media (max-width: 1100px) {
    .platform-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .platform-panel__info {
        max-width: 100%;
    }
}

/* platform section-level padding handled by pin-inner */

.assistant-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assistant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg);
    transition: background 0.15s;
}

.assistant-item--active {
    background-color: #e8e9e5;
}

.assistant-item__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.assistant-item strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #0a0a0a;
    display: block;
}

.assistant-item small {
    font-size: 12px;
    color: var(--color-text-subtle);
}

/* =============================================
     TAB SECTIONS (AI + Platform)
     State-based: tab click shows panel.
     No scroll capture, no sticky layout.
  ============================================= */

/* ── Outer wrapper: normal block flow ── */
.pin-outer {
    position: relative;
}

/* ── Inner: stack header/tabs above the stage ── */
.pin-inner {
    display: flex;
    flex-direction: column;
}

/* ── Stage: normal flow container ── */
.pin-stage {
    position: relative;
}

/* ── Each slide: hidden by default ── */
.pin-slide {
    display: none;
    align-items: center;
    pointer-events: none;
}

/* ── Active slide: fade + lift in ── */
.pin-slide.is-active {
    display: flex;
    pointer-events: auto;
    animation: tabFadeIn 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Progress dots ── */
.pin-dots {
    display: none;
    gap: 6px;
    justify-content: center;
    padding: 10px 0 6px;
    flex-shrink: 0;
}

.pin-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition:
        background 280ms ease,
        transform 280ms ease;
}

.pin-dot.is-active {
    background: var(--text);
    transform: scale(1.4);
}

/* ══════════════════════════════════════════════
     AI ASSISTANTS — layout inside pin-inner
  ══════════════════════════════════════════════ */

.ai-assistants .ai-assistants__tabs-wrap {
    position: relative;
    top: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    margin-bottom: 0;
}

.ai-assistants .pin-slide {
    padding: 0;
    /* vertically centre the card content in the remaining stage space */
    align-items: center;
}

.ai-assistants .assistant-section__content {
}

/* ══════════════════════════════════════════════
     PLATFORM — layout inside pin-inner
  ══════════════════════════════════════════════ */

.platform .platform__tabs-wrap {
    position: relative;
    top: auto;
    background: transparent;
    backdrop-filter: none;
    margin-bottom: 0;
}

.platform .pin-slide {
    padding: 0;
    align-items: center;
}

.platform .platform-panel {
    border-bottom: none;
    scroll-margin-top: unset;
    min-height: 0;
    width: 100%;
}

/* ══════════════════════════════════════════════
     TABLET — ≤ 1100px
     Stack slide content vertically; keep pinning
  ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    /* AI Assistants: stack cards above visual */
    .ai-assistants .assistant-section__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-assistants .ai-assistants__visual {
        min-height: 200px;
    }

    /* Platform: stack info above visual */
    .platform .platform-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform .platform-panel__info {
        max-width: 100%;
    }

    .platform .platform-panel__visual {
        min-height: 180px;
    }

    /* Compact header/tabs on tablet */
    .ai-assistants .ai-assistants__header {
        padding-top: 24px;
        margin-bottom: 10px;
    }

    .ai-assistants .ai-assistants__heading {
        font-size: clamp(28px, 4vw, 48px);
    }

    .ai-assistants .ai-assistants__subtext {
        margin-bottom: 20px;
    }

        .platform .platform__header {
    }

    .platform .platform__heading {
        font-size: clamp(26px, 4vw, 44px);
        margin-bottom: 0;
    }
}

/* ══════════════════════════════════════════════
     MOBILE — ≤ 767px
     Click-based tabs replace scroll-capture.
     Slides stack in normal flow; only the active
     slide is shown (JS toggles is-active).
  ══════════════════════════════════════════════ */
@media (max-width: 767px) {
    .container {
		    padding: 0 15px;
    }
	.btn {
    padding: 16px 24px;
    min-width: 180px;
}
	.footer .container {
    gap: 10px;
}
	
	.platform .platform__tabs-wrap ul.tabs__list {
    margin-bottom: 25px;
}

.footer {
    padding-top: 40px;
	        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
}
    .container.we-understand__content {
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: auto;
        padding: 50px 0;
    }
	.metrics {
    padding: 40px 0;
    text-align: center;
}
	.hero__bg-img, .hero__background video {
    height: 100vh;
}

    /* Smaller heading + subtext */
    .ai-assistants .ai-assistants__heading {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

        .ai-assistants .ai-assistants__header {
        padding-top: 18px;
        margin-bottom: 6px;
        margin-top: 40px;
    }

    .ai-assistants .ai-assistants__tabs-wrap {
        padding-bottom: 6px;
    }

    .platform .platform__heading {
    }

    .platform .platform__header {
        padding-top: 18px;
        margin-bottom: 18px;
        margin-top: 0px;
    }
    header.header.scrolled {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .nav {
        padding: 22px 0;
    }
    section#platform {
        padding: 50px 0 !important;
    }

    .platform .platform__tabs-wrap {
        padding-bottom: 6px;
    }

    /* Pills: smaller, full-width scrollable row */
    .tabs__list {
        width: 100%;
        justify-content: flex-start;
        flex-flow: row;
        padding: 4px;
    }

    .tabs {
    margin-bottom: 10px;
    }

        .tabs__btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Mobile slide layout adjustments */
    .pin-slide {
        align-items: flex-start;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* Cards: stack, reduce gaps */
    .ai-assistants .assistant-section__content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Hide the waveform visual on mobile to save space */
    .ai-assistants .ai-assistants__visual {
        display: none;
    }

    /* Cards: compact */
    .assistant-card {
        min-height: 68px;
        padding: 12px 14px;
    }

    .assistant-card__avatar {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .assistant-card__name {
        font-size: 17px;
    }

    .assistant-card__style {
        font-size: 13px;
    }

    .assistant-card__action {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .assistant-card__action img {
        width: 36px;
        height: 36px;
    }

    /* Platform cards: stack, compact */
    .platform .platform-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 8px;
    }

    .platform-panel__title {
        font-size: 20px;
    }

    .platform-panel__tagline {
        font-size: 18px;
    }

    /* Platform visual: shrink orb, hide on very small screens */
    .platform-panel__orb-wrap {
        min-height: 160px;
    }

    .platform-panel__mockup {
        padding: 16px;
    }

    /* Dots: visible on mobile as the primary progress indicator */
    .pin-dots {
        display: none;
    }

    .pin-dot {
        width: 7px;
        height: 7px;
    }
}

/* ── Extra-small screens (≤ 400px) ── */
@media (max-width: 400px) {
    .ai-assistants .assistant-section__content {
        gap: 10px;
    }

    .assistant-card {
        min-height: 60px;
        padding: 10px 12px;
    }

    .assistant-card__avatar {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .platform-panel__title {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
.platform .platform__tabs-wrap ul.tabs__list li {
    width: 24%;
}
.we-understand__cta {
    text-align: right;
}
	.platform-panel__visual img {
    max-height: 430px;
    width: auto;
}
header.header.scrolled nav.nav {
    padding: 18px 0;
}
}

/* ================================================
   SHARED: CTA Banner
   Reusable gradient call-to-action strip.
   ================================================ */


.cta-banner {
    padding: 60px 0;
    background: url(https://sr-website-01.shiprocket.in/sr-website/hh-wo8RuJ.png);
    background-size: cover;
    background-position: center;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(600px 400px at 20% 30%,
            rgba(255, 255, 255, 0.3) 0%, transparent 65%),
        radial-gradient(500px 350px at 80% 70%,
            rgba(255, 255, 255, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-banner__heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    line-height: var(--lh-snug);
    color: #08101c;
    letter-spacing: -0.5px;
    max-width: 520px;
}

.cta-banner__actions {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    flex-shrink: 0;
}

.cta-banner__outline-btn {
    border-color: rgba(8, 16, 28, 0.45);
    color: #08101c;
}

.cta-banner__outline-btn:hover {
    background-color: rgba(8, 16, 28, 0.06);
}

@media (max-width: 900px) {
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-banner__heading { max-width: 100%; }
}

@media (max-width: 600px) {
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
}


/* ================================================
   SHARED: FAQ Accordion
   Reusable expand/collapse question list.
   ================================================ */

.faq {
    padding: 80px 0 120px;
    background-color: var(--color-bg);
}

.faq__heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-dark);
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
}

.faq__list {
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: transparent;
    border-radius: 14px;
    padding: 0 24px;
    border: 1px solid #CACACA;
}

.faq__item.faq__item--open {
    background: #ffffff;
    border-color: #ffffff;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s ease;
}

.faq__question:hover { color: var(--color-text-muted); }

.faq__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #e8e8e8;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq__item--open .faq__icon {
    background: var(--color-dark);
    color: #ffffff;
    transform: scale(1.08);
}

.faq__icon-minus { display: none; }
.faq__icon-plus  { display: block; }

.faq__item--open .faq__icon-minus { display: block; }
.faq__item--open .faq__icon-plus  { display: none; }

.faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__answer {
    max-height: 240px;
}

.faq__answer p {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    padding-bottom: 22px;
}

@media (max-width: 600px) {
    .faq__question { font-size: var(--fs-sm); padding: 16px 0;}
    .faq__item { padding: 0 16px; }
}

/* ================================================
   ANIMATIONS & TRANSITIONS
   ================================================ */

/* 1. Reduced-motion safety net */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 2. Sticky header — hide on scroll down, reveal on scroll up */
header.header {
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 200ms ease;
}

header.header.nav--hidden {
    transform: translateY(-100%);
}

header.header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    background: #ffffffcc;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

/* 3. Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 480ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-group .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-group .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-group .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-group .reveal:nth-child(5) { transition-delay: 320ms; }

/* 4. Image fade-in on load (lazy images only — avoids affecting logo/hero) */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 320ms ease;
}

img[loading="lazy"].img-loaded {
    opacity: 1;
}


/* ================================================
   SHARED: Page Hero (centered, gradient bg)
   ================================================ */

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 0 80px;
    background-color: var(--color-bg);
}

.page-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(900px 540px at 50% 40%,
            rgba(184, 171, 255, 0.28) 0%, transparent 70%),
        radial-gradient(700px 420px at 30% 60%,
            rgba(112, 177, 241, 0.18) 0%, transparent 70%),
        radial-gradient(600px 400px at 75% 55%,
            rgba(255, 185, 130, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.page-hero__eyebrow {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: var(--sp-md);
}

.page-hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(44px, 7vw, 70px);
    line-height: var(--lh-tight);
    letter-spacing: -2px;
    color: var(--color-dark);
    margin-bottom: var(--sp-md);
}

.page-hero__subtext {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    max-width: 650px;
    margin-inline: auto;
    margin-bottom: var(--sp-xl);
}

.page-hero__cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .page-hero { padding: 110px 0 60px; }
    .page-hero__cta-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-inline: auto;
    }
}

.platform .platform__tabs-wrap ul.tabs__list {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #d0d0cd;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    padding-bottom: 6px;
}

.platform .platform__tabs-wrap ul.tabs__list li button.tabs__btn {
    border-radius: 8px;
    width: 100%;
}

h2 {
    font-weight: 600 !important;
}