/* global classes */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Offset for fixed header */
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  /* Basic Colors */
  --cl-black: #000000;
  --cl-black-bg: #07090F;
  --cl-white: #ffffff;

  /* Red */
  --cl-red: #f93e3e;

  /* Yellow */
  --cl-yellow: #ffc224;

  /* Green */
  --cl-green: #bbec53;
  --cl-green-extra-light: #F2FFD7;
  --cl-green-light: #d7f9ad;
  --cl-green-light-16: rgba(215, 249, 173, 0.16);
  --cl-green-light-20: rgba(215, 249, 173, 0.20);
  --cl-green-dark: #89bb1e;
  --cl-green-dark-2: #0D4A04;

  /* Grey */
  --cl-grey-1: #f8f8f9;
  --cl-grey-2: #f4f4f4;
  --cl-grey-3: #e8e8e8;
  --cl-dark-grey: #454545;
  --background-color-3: #ECECED;

  /* Purple Background */
  --cl-purple-light: #E8E8FF;
  --cl-purple: #DBDDFB;

  /* Blue Background */
  --cl-blue-light: #E8F1FF;
  --cl-blue: #D7E4F9;

  /* Pink Backgrounds */
  --cl-pink-light: #FFE8FA;
  --cl-pink: #FFCDCD;


  /* Alpha Colors */
  --ca-black-80: rgba(0, 0, 0, 0.8);
  --ca-black-70: rgba(0, 0, 0, 0.7);
  --ca-black-60: rgba(0, 0, 0, 0.6);
  --ca-black-50: rgba(0, 0, 0, 0.5);
  --ca-black-20: rgba(0, 0, 0, 0.2);
  --ca-black-10: rgba(0, 0, 0, 0.1);
  --ca-white-80: rgba(255, 255, 255, 0.8);
  --ca-white-70: rgba(255, 255, 255, 0.7);
  --ca-white-50: rgba(255, 255, 255, 0.5);
  --ca-white-40: rgba(255, 255, 255, 0.4);
  --ca-white-30: rgba(255, 255, 255, 0.3);
  --ca-white-20: rgba(255, 255, 255, 0.2);
  --ca-white-10: rgba(255, 255, 255, 0.1);
  --ca-dark-grey-60: rgba(69, 69, 69, 0.6);

  /* Backgrounds */
  --bg-layout-black: var(--cl-black-bg);
  --bg-white: var(--cl-white);
  --bg-white-10: var(--ca-white-10);
  --bg-white-30: var(--ca-white-30);
  --bg-dark: var(--cl-black);
  --bg-green: var(--cl-green);
  --bg-green-light: var(--cl-green-light);
  --bg-green-extra-light: var(--cl-green-extra-light);
  --bg-grey-1: var(--cl-grey-1);
  --bg-grey-2: var(--cl-grey-2);
  --bg-grey-3: var(--cl-grey-3);

  /* Borders */
  --border-white: var(--cl-white);
  --border-white-30: var(--ca-white-30);

  /* Typography */
  --text-default: var(--cl-black);
  --text-light: var(--ca-black-80);
  --text-xlight: var(--ca-white-70);
  --text-contrast: var(--cl-white);
  --text-accent: var(--cl-green);
  --text-accent-dark: var(--cl-green-dark);
  --text-accent-dark-2: var(--cl-green-dark-2);

  /* Font Families */
  --ff-euclid: "EuclidCircularA", Arial, sans-serif;
  --ff-text: var(--ff-euclid);

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  /* Font Style */
  --fs-italic: italic;

  /* Heading Sizes */
  --title-h1-fz: 80px;
  --title-h1-lh: 90px;

  --title-h2-fz: 50px;
  --title-h2-lh: 115%;
  --title-h2-medium-fz: 40px;
  --title-h2-medium-lh: 50px;

  --title-h3-fz: 32px;
  --title-h3-lh: 36px;

  --title-h4-fz: 24px;
  --title-h4-lh: 32px;

  --title-h5-fz: 18px;
  --title-h5-lh: 24px;

  --title-h6-fz: 16px;
  --title-h6-lh: 24px;

  /* Subtitle */
  --subtitle-q0-fz: 24px;
  --subtitle-q0-lh: 32px;

  /* Paragraph Sizes */
  --text-p0-fz: 20px;
  --text-p0-lh: 32px;

  --text-p1-fz: 16px;
  --text-p1-lh: 24px;

  --text-p2-fz: 14px;
  --text-p2-lh: 20px;

  --text-p3-fz: 12px;
  --text-p3-lh: 100%;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  border: 0;
  box-sizing: border-box;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

mark {
  background-color: transparent;
}

@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/EuclidCircularA/EuclidCircularA-Regular.woff2)
    format("woff2");
}

@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/EuclidCircularA/EuclidCircularA-Medium.woff2)
    format("woff2");
}

@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/EuclidCircularA/EuclidCircularA-Semibold.woff2)
    format("woff2");
}

@font-face {
  font-display: swap;
  font-family: EuclidCircularA;
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/EuclidCircularA/EuclidCircularA-RegularItalic.woff2)
    format("woff2");
}

body,
html {
  width: 100%;
}

html {
  background-color: #f4f4f4;
  color: #000;
  font-family: EuclidCircularA, Arial, sans-serif;
  font-size: 16px;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  line-height: 24px;
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  font-family: var(--ff-text);
}

::selection {
  background: var(--cl-red);
  color: var(--cl-white);
}

img { max-width: 100%; }
.body-lock { overflow: hidden; }
b {
  font-family: EuclidCircularA-Semibold, Arial, sans-serif;
  font-weight: 600;
}
i { font-style: italic; }
.mx_auto { margin-inline: auto; }
.shadow_light { box-shadow: 0px 4px 6px rgba(0,0,0,0.16); }

.font_medium { font-weight: 500; }
.font_semibold { font-weight: 600; }
.font_semibold_imp { font-weight: 600 !important; }
.font_bold_imp { font-weight: 700 !important; }

.block { display: block; }
.inline { display: inline; }
.flex { display: flex; }
.flex_column { flex-direction: column; }
.flex_wrap { flex-wrap: wrap; }
.flex_row { flex-direction: row; }
.align_center { align-items: center; }
.align_start { align-items: flex-start; }
.align_end { align-items: flex-end; }

/* Main justify-content utilities */
.justify_start    { justify-content: flex-start; }
.justify_start_imp{ justify-content: flex-start !important; }
.justify_end      { justify-content: flex-end; }
.justify_center   { justify-content: center; }
.justify_between  { justify-content: space-between; }
.justify_around   { justify-content: space-around; }
.justify_evenly   { justify-content: space-evenly; }

.w_full { width: 100%; }
.w_fit { width: fit-content; }
.w_fit_imp { width: fit-content !important; }
.max_w_800 { max-width: 800px; }
.h_full { height: 100%; }
.overflow_auto { overflow: auto; }
.overflow_hidden { overflow: hidden; }

.relative { position: relative; }
.text_center { text-align: center; }
.text_left { text-align: left; }
.text_right { text-align: right; }
.text_center_mob_right { text-align: center; }
.z_10 { z-index: 10; }

.grid { display: grid; }
.grid_columns_1 { grid-template-columns: 1fr; }
.grid_columns_2 { grid-template-columns: repeat(2, 1fr); }
.grid_columns_2_mob_1 { grid-template-columns: repeat(2, 1fr); } /* will be 1 column on mobile */
.grid_columns_2_tab_1_mob_1 { grid-template-columns: repeat(2, 1fr); } /* will be 1 column on tablet and 1 column on mobile */
.grid_columns_2_tab_2_mob_1 { grid-template-columns: repeat(2, 1fr); } /* will be 2 columns on tablet and 1 column on mobile */
.grid_columns_3 { grid-template-columns: repeat(3, 1fr); }
.grid_columns_3_tab_2_mob_1 { grid-template-columns: repeat(3, 1fr); } /* will be 2 columns on tablet and 1 column on mobile */

.gap_40_mob_24,
.gap_40_mob_20 { gap: 40px; }
.gap_32_mob_24,
.gap_32_mob_16 { gap: 32px; }
.gap_24 { gap: 24px; }
.gap_24_mob_16 { gap: 24px; }
.gap_16 { gap: 16px; }
.gap_16_mob_8 { gap: 16px;}
.gap_16_mob_12 { gap: 16px;}
.gap_12 { gap: 12px;}
.gap_12_mob_0 { gap: 12px;}
.gap_10 { gap: 10px; }
.gap_8 { gap: 8px;}
.gap_6 { gap: 6px; }
.gap_4 { gap: 4px; }
.gap_7_mob_4 { gap: 7px; }
.gap_60_mob_30 { gap: 60px; }

.p_block_0 { padding-block: 0px !important; }
.p_block_20 { padding-block: 20px; }
.p_block_80 { padding-block: 80px; }
.p_block_section_100 { padding-block: 100px !important; }
.p_14 { padding: 14px; }
.p_8_12 { padding: 8px 12px; }
.p_8_12_imp { padding: 8px 12px !important; }
.p_12_16 { padding: 12px 16px; }
.p_12_mob_8 { padding: 12px; }
.p_24_mob_16 { padding: 24px 16px; }
.p_32_mob_24 { padding: 32px; }
.p_32_mob_0 { padding: 32px; }

.mb_0 { margin-bottom: 0px; }
.mt_0 { margin-top: 0px; }
.mb_0_imp { margin-bottom: 0px !important; }
.mb_16 { margin-bottom: 16px; }
.mb_24 { margin-bottom: 24px; }
.mb_40 { margin-bottom: 40px; }
.m_block_42_mob_16 { margin-block: 42px; }

.br_8 { border-radius: 8px; }
.br_12 { border-radius: 12px; }
.br_12_mob_10 { border-radius: 12px; }
.br_16 { border-radius: 16px; }
.br_16_imp { border-radius: 16px !important; }
.br_16_mob_0 { border-radius: 16px; }
.br_24 { border-radius: 24px; }

.bg_layout_dark { background-color: var(--bg-layout-black); }
.bg_white_10 { background: var(--ca-white-10); }
.bg_white_10_imp { background: var(--ca-white-10) !important; }
.bg_white { background-color: var(--bg-white); }
.bg_white_imp { background-color: var(--bg-white) !important; }
.bg_grey_1 { background-color: var(--bg-grey-1); }
.bg_grey_2 { background-color: var(--bg-grey-2); }
.bg_grey_3 { background-color: var(--bg-grey-3); }
.bg_dark { background-color: var(--bg-dark); }
.bg_transparent { background: transparent; }
.bg_dark_opacity_50 { background-color: rgba(0, 0, 0, 0.5); }
.bg_green { background-color: var(--bg-green); }

.border_2_white_10 { border: 2px solid var(--ca-white-10); }
.border_pink { border: 1px solid var(--cl-pink); }
.border_green { border: 1px solid var(--cl-green); }
.border_black_light { border: 1px solid var(--text-light); }
.border_black_light_imp { border: 1px solid var(--text-light) !important; }
.border_transparent { border: 1px solid transparent; }
.border_2_transparent { border: 2px solid transparent; }
.border_b_grey_2 { border-bottom: 1px solid var(--bg-grey-2); }
.border_b_grey_3 { border-bottom: 1px solid var(--bg-grey-3); }

@media only screen and (min-width: 601px) and (max-width: 1140px) {
  .grid_columns_2_tab_1_mob_1 { grid-template-columns: repeat(1, 1fr); }
  .grid_columns_3_tab_2_mob_1 { grid-template-columns: repeat(2, 1fr); }
  .p_inline_tablet_20 { padding-inline: 20px; }
}

@media only screen and (max-width: 600px) {
  .grid_columns_2_mob_1 { grid-template-columns: repeat(1, 1fr); }
  .grid_columns_2_tab_1_mob_1 { grid-template-columns: repeat(1, 1fr); }
  .grid_columns_2_tab_2_mob_1 { grid-template-columns: repeat(1, 1fr); }
  .grid_columns_3_tab_2_mob_1 { grid-template-columns: repeat(1, 1fr); }
  .text_center_mob_right { text-align: right; }
  .text_center_mobile { text-align: center; }
  .m_block_42_mob_16 { margin-block: 16px; }
  .p_inline_mobile_16 { padding-inline: 16px; }
}
@media (max-width: 899px) {
  .gap_40_mob_24 { gap: 24px; }
  .gap_40_mob_20 { gap: 20px; }
  .gap_32_mob_24 { gap: 24px; }
  .gap_32_mob_16, .gap_24_mob_16 { gap: 16px; }
  .gap_16_mob_12 { gap: 12px;}
  .gap_16_mob_8 { gap: 8px; }
  .gap_7_mob_4 { gap: 4px; }
  .gap_mob_12 { gap: 12px; }
  .gap_60_mob_30 { gap: 30px; }

  .p_12_mob_8 { padding: 8px; }
  .p_24_mob_16 { padding: 16px; }
  .p_32_mob_24 { padding: 24px; }
  .p_block_section_100 { padding-block: 80px !important; }
  .br_16_mob_0 { border-radius: 0px; }
  .br_12_mob_10 { border-radius: 10px; }
  .w_full_mobile { width: 100%; }
  .p_inline_mob_0_imp { padding-inline: 0px !important; }
  .justify_start_mob { justify-content: flex-start !important; }
}

.no_underline { text-decoration: none; }
.underline_on_hover:hover { text-decoration: underline; }

.line_break_desktop { display: block; }
.line_break_desktop_tablets_lg { display: block; }

@media only screen and (max-width: 1140px) {
  .line_break_desktop { display: inline; }
}
@media only screen and (max-width: 899px) {
  .line_break_desktop_tablets { display: block; }
  .line_break_desktop_tablets_lg { display: inline; }
}
@media only screen and (min-width: 1141px) {
  .hide_on_desktop { display: none !important; }
}
@media only screen and (min-width: 601px) and (max-width: 1140px) {
  .hide_on_tablet { display: none !important; }
}
@media only screen and (max-width: 600px) {
  .hide_on_mobile { display: none !important; }
  .p_32_mob_0 { padding: 0px; }
  .p_mob_0 { padding: 0px !important; }
  .gap_12_mob_0 { gap: 0px; }
  .justify_center_mob_imp { justify-content: center !important; }
}


/* Base Button Styles */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  -webkit-appearance: none;
  text-align: center;
  text-decoration: none;
  font-weight: var(--fw-medium);
  font-family: var(--ff-text);
  border: 0;
  outline: 0;
  touch-action: manipulation;
  transition: background-color 0.2s;
  cursor: pointer;
}

.button:active,
.button:focus { outline: 0; }
/* Button Color Variants */
.button_primary {
  color: var(--text-light);
  background: var(--bg-grey-1);
  border: 1px solid var(--bg-grey-1);
}

.button_light {
  color: var(--text-contrast);
  background: var(--ca-white-10);
  border: 1px solid var(--ca-white-10);
}
.button_light:hover { background: var(--ca-white-30);}
.button_transparent {
  color: var(--text-contrast);
  background: transparent;
  border: 1px solid var(--border-white-30);
}
.button_black {
  color: var(--text-contrast);
  background: var(--cl-black);
  border: 1px solid var(--cl-black);
}

.button_grey_2 {
  color: var(--text-light);
  background: var(--cl-grey-2);
  border: 1px solid var(--cl-grey-2);
}

/* Button Sizes */
.button_sm {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: var(--text-p2-fz); /* Small text size */
}

.button_lg {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: var(--text-p0-fz); /* Large text size */
}

/* Full-width Button */
.button_block { width: 100%; }
/* You might want to add these additional states */
.button_primary:hover { background: var(--cl-grey-2); /* Slightly darker grey */ }

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.icon { vertical-align: middle; }

.emoji,
.icon { aspect-ratio: 1/1; display: inline-block; }
.emoji { flex-shrink: 0; vertical-align: baseline; }
.emoji_inline { position: relative; top: 0.1em; }
.emoji_inline .emoji_block { width: auto; }

.divider {
  width: 100%;
  height: 0px;
  display: block;
  border-bottom: 1px solid #e8e8e8;
}

.list > li {
  margin-left: 20px;
  position: relative;
}
.list > li:before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: -20px;
  position: absolute;
  top: 0.6em;
  width: 4px;
}
.list_red > li:before {
  background-color: var(--cl-red);
  height: 8px;
  top: calc(50% - 4px);
  width: 8px;
}
.list_white > li:before {
  background-color: var(--cl-white);
}

/* Base Frame */
.frame {
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: 20px;
}

/* Frame Sizes */
.frame_xs { padding: 12px; }
.frame_sm { padding: 16px; }
.frame_lg { padding: 24px 32px; }
.frame_xl { padding: 42px 32px; }
.frame_xxl { padding: 42px; }

/* Frame Color Variants */
.frame_dark {
  color: var(--text-contrast);
  background-color: var(--bg-dark);
}
.frame_green { background-color: var(--bg-green-light); }
.frame_white_10 {
  background-color: var(--bg-white-10);
  border: 1px solid var(--border-white-30);
  box-shadow: 0 44px 44px 0 rgba(255, 255, 255, 0.01);
}
.frame_transparent {
  background-color: transparent;
  border: 1px solid var(--border-white-30);
}
.frame_grey_1 { background-color: var(--bg-grey-1); }
.frame_grey_2 { background-color: var(--bg-grey-2); }
.frame_purple_light { background-color: var(--cl-purple-light); }
.frame_pink_light { background-color: var(--cl-pink-light); }
.frame_pink { background-color: var(--cl-pink); }

/* Border Radius Variants */
.frame_br_40 { border-radius: 40px; }
.frame_br_30 { border-radius: 30px; }
.frame_br_24 { border-radius: 24px; }
.br_20 { border-radius: 20px; }
.frame_br_16 { border-radius: 16px; }
.frame_quarter_round { border-bottom-left-radius: 0; }

/* Text Colors */
.frame_text_white { color: var(--text-contrast); }
.frame_text_dark { color: var(--text-default); }
.frame_text_green { color: var(--text-accent); }

/* Responsive Styles */
@media (max-width: 600px) {
  .frame { padding: 12px 16px; }
  .frame_lg,
  .frame_xl { padding: 16px; }
  .frame_xxl { padding: 24px 16px; }
  .frame_white_10_mb {
    border-radius: 12px;
    border: 1px solid var(--ca-white-20);
    box-shadow: 0 44px 44px 0 var(--ca-white-10);
  }
}

/* Border Modifier */
.frame_no_border { border: none; }

.card {
  padding: 30px;
  flex: 1 0 0;
  transition: all 0.4s ease-out;
}
.card_white_5 {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06); /* card_shadow */
}
.card_white_5:hover {
  background: rgba(255, 255, 255, 0.10);
}
.card_border_white_5 { border: 1px solid rgba(255, 255, 255, 0.05); }
@media screen and (max-width: 600px) {
  .card { padding: 16px; }
}

.line_clamp_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* typography styles */

.title { font-weight: var(--fw-medium); }
.title_h1 { line-height: var(--title-h1-lh); font-size: var(--title-h1-fz); }
.title_h2,
.title_h2_mob_h3_medium { line-height: var(--title-h2-lh); font-size: var(--title-h2-fz); }
.title_h2_medium { line-height: var(--title-h2-medium-lh); font-size: var(--title-h2-medium-fz); }
.title_h3 { line-height: var(--title-h3-lh); font-size: var(--title-h3-fz);}
.title_h4 { line-height: var(--title-h4-lh); font-size: var(--title-h4-fz); }
.title_h5 { line-height: var(--title-h5-lh); font-size: var(--title-h5-fz); }
.title_h5_mob_p1 { line-height: var(--title-h5-lh); font-size: var(--title-h5-fz); }

.title_semibold { font-weight: var(--fw-semibold); }
.title_medium { font-weight: var(--fw-medium); }
.title_regular { font-weight: var(--fw-regular); }
.title_italic { font-style: var(--fs-italic); }
.title_light { color: var(--text-light); }
.title_xlight { color: var(--text-xlight); }
.title_contrast { color: var(--text-contrast); }
.title_accent_dark { color: var(--text-accent-dark); }
.title_accent_dark_2 { color: var(--text-accent-dark-2); }
.title_accent { color: var(--text-accent); }

.subtitle {
  line-height: var(--subtitle-q0-lh);
  font-size: var(--subtitle-q0-fz);
  font-family: var(--ff-text); /* Inherits the base font family */
}
.subtitle_semibold { font-weight: var(--fw-semibold); }
.subtitle_medium { font-weight: var(--fw-medium); }
.subtitle_regular { font-weight: var(--fw-regular); }
.subtitle_italic { font-style: var(--fs-italic); }
.subtitle_light { color: var(--text-light); }
.subtitle_xlight { color: var(--text-xlight); }
.subtitle_contrast { color: var(--text-contrast); }
.subtitle_accent { color: var(--text-accent); }

/* text classes */

/* Paragraph Text Styles */
.text_p0 {
  font-size: var(--text-p0-fz);
  line-height: var(--text-p0-lh);
  font-family: var(--ff-text);
}
.text_p1, .text_p1_mob_p1 {
  font-size: var(--text-p1-fz);
  line-height: var(--text-p1-lh);
  font-family: var(--ff-text);
}
.text_p2, .text_p2_mob_p3 {
  font-size: var(--text-p2-fz);
  line-height: var(--text-p2-lh);
  font-family: var(--ff-text);
}
.text_p3 {
  font-size: var(--text-p3-fz);
  line-height: var(--text-p3-lh);
  font-family: var(--ff-text);
}

/* Text Modifiers */
.text_semibold { font-weight: var(--fw-semibold); }
.text_medium { font-weight: var(--fw-medium); }
.text_regular { font-weight: var(--fw-regular); }
.text_italic { font-style: var(--fs-italic); }

/* Text Colors */
.text_light { color: var(--text-light); }
.text_xlight { color: var(--text-xlight); }
.text_white_80 { color: var(--ca-white-80); }
.text_white_70 { color: var(--ca-white-70); }
.text_white, .text_contrast { color: var(--text-contrast); }
.text_accent { color: var(--text-accent); }
.text_accent_light { color: var(--cl-green-light); }
.text_accent_dark { color: var(--text-accent-dark); }
.text_dark_grey_60 { color: var(--ca-dark-grey-60); }
.text_black { color: var(--text-default); }
.text_black_60 { color: var(--ca-black-60); }

/* for responsiveness most of the content becomes 1 level smaller. So H1 size will become that of H2, H2 size will become that of H3, etc. */
@media (max-width: 1139px) {
  .title_h1 { font-size: var(--title-h2-medium-fz); line-height: var(--title-h2-medium-lh); }
  .title_h2, .title_h2_medium { line-height: var(--title-h3-lh); font-size: var(--title-h3-fz); }
  .title_h3 { line-height: var(--title-h4-lh); font-size: var(--title-h4-fz); }

  .title_h4 { line-height: var(--title-h5-lh); font-size: var(--title-h5-fz); }
  .text_p0,
  .title_h5_mob_p1 { font-size: var(--text-p1-fz); line-height: var(--text-p1-lh); }
  .text_p1 { font-size: var(--text-p2-fz); line-height: var(--text-p2-lh); }
  .subtitle { font-size: var(--text-p1-fz); line-height: var(--text-p1-lh); }
  .text_p2_mob_p3 { font-size: 11px; line-height: var(--text-p3-lh); }
  .text_p3 { font-size: 11px; }
}
/* end of text classes */

.accent_tag_pill {
  padding: 2px 8px;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--cl-green);
  background: var(--cl-green);
}

/* ================================================ */
/* section */
/* ================================================ */

.section {
  display: flex;
}
.section_body {
  width: 100%;
  margin-inline: auto;
  padding: 80px 0px;
}
.max_w_1200 {
  max-width: 1200px;
}
.p_lg_section_block { padding-block: 100px; }
.p_l_section_block { padding-block: 80px; }
.p_sm_section_block { padding-block: 60px; }
.section_title { margin-bottom: 24px; }

/* Dark background section */
.section_dark {
  color: var(--text-contrast);
  background-color: var(--bg-dark);
}
.section_white { background-color: var(--bg-white); } /* White background section */
.section_green { background-color: var(--bg-green-light); } /* Green background section */
.section_white_10 { background-color: var(--bg-white-10); } /* White 10% opacity background section */
.section_grey_1 { background-color: var(--bg-grey-1); } /* Grey 1 background section */
.section_grey_2 { background-color: var(--bg-grey-2); } /* Grey 2 background section */

/* Wide section */
.section_wide .section_title { padding-inline: 42px; }
.section_inner { max-width: 1200px; margin: 0 auto; }

@media (max-width: 1140px) {
  .section_inner { padding-inline: 20px; }
}
@media (max-width: 768px) {
  .section_inner { padding-inline: 16px; }
}

/* Tablet-sm and Mobile (900px and below) */
@media (max-width: 899px) {
  .section_body { padding: 40px 0px; }
  .section_title { margin-bottom: 16px; }
  .section_wide .section_title { padding-inline: 16px; }
}
/* ================================================ */
/* end of section */
/* ================================================ */

.main {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* section specific classes below */

/* ================================================ */
/* header section */
/* ================================================ */
.header {
  align-items: center;
  display: flex;
  height: 68px;
  inset: 12px 40px auto;
  justify-content: center;
  position: absolute;
  z-index: 100;
}
.header_content {
  align-items: center;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background-color: transparent;
  border-radius: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  height: auto;
  padding: 0 40px;
  transition: padding 0.5s ease-in-out,
    width 0.5s cubic-bezier(0.85, 0.01, 0.1, 1), height 0.5s ease-in-out,
    background-color 0.5s ease-in-out, -webkit-backdrop-filter 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out,
    width 0.5s cubic-bezier(0.85, 0.01, 0.1, 1), height 0.5s ease-in-out,
    background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out,
    width 0.5s cubic-bezier(0.85, 0.01, 0.1, 1), height 0.5s ease-in-out,
    background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out,
    -webkit-backdrop-filter 0.5s ease-in-out;
  width: 1280px;
}
.header_scrolled {
  height: 68px;
  inset: 12px 40px auto;
}
.header_scrolled .header_content {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(69, 69, 69, 0.6);
  display: flex;
  align-items: center;
  gap: 18px;
  height: auto;
  padding: 12px 24px;
  position: fixed;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
}
/* for terms and conditions page, privacy policy page, and cookie policy page */
.footer_pages_header_content {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(69, 69, 69, 0.6);
  padding: 12px 16px;
  width: 1240px;
}
.header_logo {
  align-items: center;
  display: flex;
  gap: 16px;
}
.logo_main {
  aspect-ratio: 77/20;
  height: 40px;
}
.logo_main,
.logo_label {
  align-items: center;
  display: contents;
  flex-shrink: 0;
}
.logo_label_img {
  aspect-ratio: 77 / 20;
  display: block;
  height: 40px;
}
.header .logo_label .logo_label_img {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.header_scrolled .logo_label .logo_label_img {
  opacity: 0;
  transform: translateX(-35%);
  width: 0;
  height: 0;
  overflow: hidden;
}
.header_nav_list {
  align-items: center;
  display: flex;
  gap: 0px;
}
.header_scrolled .header_nav_list { justify-content: center; }
.header_nav_item {
  position: relative;
  display: flex;
}
.header_nav_link {
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--bg-white);
  display: block;
  font-weight: 500;
  opacity: 0.7;
  padding: 6px 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header_nav_link:hover { opacity: 1; }
.header_nav_link.active { color: #fff; opacity: 1 !important; }
.header_nav_item_bg {
  position: absolute;
  display: none;
  font-weight: 600;
  border: 1px solid #ffffff;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  pointer-events: none;
  z-index: 0;
  inset: 0;
}
.header_actions {
  display: flex;
  gap: 16px;
  justify-self: end;
  flex-shrink: 0;
}

@media only screen and (min-width: 601px) and (max-width: 1140px) {
  .header .logo_main {
    height: 30px;
    width: 30px;
  }
  .header_content {
    grid-template-columns: 40px 1fr;
    padding: 0;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out,
      -webkit-backdrop-filter 0.5s ease-in-out;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out,
      -webkit-backdrop-filter 0.5s ease-in-out;
  }
}
@media only screen and (max-width: 1140px) {
  .header_content {
    display: flex;
    justify-content: space-between;
  }
  .footer_pages_header_content { padding: 10px; }
}

@media only screen and (min-width: 901px) and (max-width: 1140px) {
  .header {
    inset: 0px 38px auto;
    top: 20px;
  }
  .header_scrolled .header_content {
    inset: auto;
    top: 12px;
    left: 50%;
    width: fit-content;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
  }
  .header_logo { gap: 8px; }
  .logo_main img { width: 25px; }
  .logo_label,
  .logo_label img {
    width: 50px;
  }
  .header_scrolled .logo_label,
  .header_scrolled .logo_label img {
    width: 0px;
    display: none;
  }
  .header_nav_link {
    font-size: 80%;
    padding: 6px 8px;
  }
  .header_actions .button {
    padding: 6px 10px;
    font-size: 80%;
  }
  .header_actions .button .text {
    font-size: 80%;
  }
  .header_scrolled .header_actions .button_light {
    display: none;
  }
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
  .header { inset: 12px 45px auto; }
  .header_scrolled .header_content {
    inset: auto 21px;
    padding: 12px 24px;
    width: auto;
    grid-template-columns: 40px 1fr;
  }
  .header_logo { gap: 8px; }
  .logo_label,
  .header_nav { display: none; }
  .header_actions { gap: 8px; }
}

@media only screen and (max-width: 600px) {
  .header { inset: 12px 28px auto; }
  .header_content {
    grid-template-columns: 40px 1fr;
    padding: 0;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out,
      -webkit-backdrop-filter 0.5s ease-in-out;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out;
    transition: width 0.3s cubic-bezier(0.85, 0.01, 0.1, 1),
      background-color 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out,
      -webkit-backdrop-filter 0.5s ease-in-out;
  }
  .footer_pages_header_content {
    padding: 10px 12px;
    margin: 0px -20px;
  }
  .header_scrolled .footer_pages_header_content { margin: 0px; }
  .header_scrolled .header_content {
    inset: auto 16px;
    padding: 12px;
    width: auto;
    grid-template-columns: 40px 1fr;
  }
  .header_logo { gap: 8px; }
  .header .logo_main {
    height: 30px;
    width: 30px;
  }
  .header .logo_label .logo_label_img { height: auto; }
  .logo_label,
  .header_nav { display: none; }
  .header_actions { gap: 8px; }
}

@media only screen and (max-width: 340px) {
  .header { inset: 60px 41px auto; }
  .header_content { align-items: start; }
  .header_scrolled .header_content { inset: 29px 17px auto; }
  .header_actions { flex-direction: column; }
}

@media only screen and (min-width: 341px) and (max-width: 400px) {
  .header .logo_label {
    display: none;
  }
}
/* ================================================ */
/* end of header section */
/* ================================================ */

.top_section .section_body {
  padding-top: 150px;
}
/* Tablet (601px - 1139px) */
@media (min-width: 601px) and (max-width: 1139px) {
  .top_section .section_body {
    padding-top: 100px;
  }
}
/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .top_section .section_body {
    padding-top: 100px;
  }
}

/* ================================================ */
/* intro / hero section */
/* ================================================ */
.hero {
  background-color: var(--bg-dark);
  background-image: url("/img/hero/hero-bg.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 155%;
}
.hero .section_body {
  position: relative;
  padding: 162px 20px 80px;
  overflow: visible;
  max-width: 100%;
}
.hero .section_inner {
  grid-template-columns: 1fr;
  gap: 42px;
}
/* Hero Content */
.hero_message {
  position: relative;
  z-index: 2;
}
.hero_description { padding-block: 16px; }
/* Hero Video */
.hero_video {
  position: relative;
  width: 100%;
  /*aspect-ratio: 16 / 9;  maintains 16:9 */
  aspect-ratio: 1.614 / 1; /* maintains 1.614:1 */
  object-fit: cover;
  border-radius: 24px;
  z-index: 0;
}

/* show controls on hover */
.hero_video::-webkit-media-controls {
  display: none !important;
}
.hero_video:hover::-webkit-media-controls {
  display: flex !important;
}
/* Hero Widget */
.hero_widget_button {
  padding: 6px;
  max-width: 300px;
  flex-grow: 1;
}
.hero_widget_text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  text-align: center;
}
.hero_description_item { padding: 8px 16px; }

/* Hero Partner Logos */
.hero_partners { gap: 12px; }

.hero_partners_label {
  opacity: 0.8;
  margin: 0;
}

.hero_partners_list {
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero_partners_item img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.hero_partners_item img:hover { opacity: 1; }

/* Hero Video Wrapper and CTAs */
.hero_video_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero_video_ctas .hero_widget_button {
  min-width: 220px;
  max-width: 388px;
}

/* Tablet (601px - 1139px) */
@media (min-width: 601px) and (max-width: 1139px) {
  .hero .section_body { padding: 130px 20px 60px; }
  .partners_and_metrics { flex-direction: column; }
}
/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .hero {
    background-size: 100% 70%;
    background-position: 0% 100%;
  }
  .hero .section_inner { padding-inline: 0px; gap: 32px; }
  .hero .section_body { padding: 100px 16px 50px;}
  .hero_description { padding-block: 12px; }
  .hero_partners {
    gap: 12px;
    padding: 16px 0px;
  }
  .hero_partners_label {
    font-size: 13px;
  }
  .hero_partners_list {
    gap: 16px;
    flex-wrap: nowrap;
  }
  .hero_partners_item img {
    height: 22px;
    width: auto;
  }
  .hero_video_ctas {
    gap: 12px;
  }
  .hero_video_ctas .hero_widget_button {
    padding: 0px;
    min-width: 100%;
  }
  .partners_and_metrics { flex-direction: column; }
}
/* ================================================ */
/* end of intro / hero section */
/* ================================================ */

/* ================================================ */
/* Pre-footer CTA section (hero-style) */
/* ================================================ */
.pre_footer_cta { background: var(--cl-black-bg); }
.pre_footer_cta .section_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-dark);
  background-image: url("/img/footer/footer-cta-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 10px;
}

.pre_footer_cta_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
}

.pre_footer_cta_content .hero_video_ctas {
  justify-content: center;
}
@media (max-width: 1140px) {
  .pre_footer_cta .section_body {
    padding: 0px;
  }
  .pre_footer_cta .section_inner {
    border-radius: 0px;
  }
}

@media (max-width: 600px) {
  .pre_footer_cta_content {
    gap: 20px;
  }
  .pre_footer_cta .section_inner {
    background-size: 100% 100%;
    padding-inline: 16px;
  }
  .pre_footer_cta_content ul {
    justify-content: center;
  }
}
/* ================================================ */
/* end of Pre-footer CTA section */
/* ================================================ */

/* ================================================ */
/* Problem section / Goal to find */
/* ================================================ */
/* Base Styles */

.goal_to_find {
  background-color: var(--bg-dark);
  background-image: url("/img/problem/problem-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/* Persona Selector Tabs */
.persona_selector {
  margin-bottom: 24px;
}

.persona_selector_label {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--ff-text);
}

.persona_tab {
  background: transparent;
  border: 2px solid var(--ca-white-40);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--ff-text);
}

.persona_tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.persona_tab.active {
  border-color: var(--cl-green-dark);
  color: var(--cl-white);
  font-weight: 600;
}

/* Persona Content Blocks */
.persona_content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.persona_content.active {
  display: flex;
}

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

/* Mobile adjustments for persona tabs */
@media screen and (max-width: 600px) {
  .goal_to_find {
    background-size: 100% 60%;
    overflow: hidden;
  }
  .persona_selector {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox: hide scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    
    /* Hide scrollbar for Chrome/Safari */
    &::-webkit-scrollbar {
      display: none;
    }
    flex-wrap: nowrap;
    
    gap: 8px;
    /* scroll-snap-type: x proximity; */
  }
  
  .persona_tab {
    scroll-snap-align: start;
    /* Prevent tabs from shrinking */
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 12px;
  }
  .persona_selector_label {
    min-width: fit-content;
  }
}

.goal_to_find .frame { z-index: 10; }

/* Title Section */
.goal_to_find_we_hear_title_fact {
  display: flex;
  align-items: center;
  max-width: 292px;
  gap: 16px;
  align-self: flex-end;
  margin-left: auto;
  margin-bottom: 2px;
}
/* Content Sections */
.goal_to_find_we_hear_content {
  align-items: start;
  gap: 40px;
  justify-items: end;
}

/* Coming Soon Badge for Engage card */
.coming_soon_badge {
  position: absolute;
  top: 16px;
  right: 24px;
  display: inline-block;
  background: var(--ca-black-10);
  color: var(--text-light);
  font-size: 11px;
  font-weight: var(--fw-medium);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.goal_to_find_we_hear_content .list_red li {
  display: inline-block;
}
.goal_to_find_we_hear_content .list_red li:first-of-type {
  margin-right: 24px;
}

/* Spacing */
.goal_to_find_offload_calls { margin-top: 32px; }

/* ----- Responsive Styles ----- */

/* Desktop (1140px+) and Tablet (601px-1139px) */
@media (min-width: 601px) {
  .goal_to_find_we_hear_content { grid-template-columns: 5fr 4fr; }
}

/* Tablet (601px-1140px) */
@media (min-width: 601px) and (max-width: 1140px) {
  .goal_to_find_we_hear_content img { height: auto; }
  .goal_to_find_we_hear_title_fact {
    position: relative !important;
    top: 0;
  }
  .goal_to_find_we_hear_content .frame {
    box-shadow: 0 44px 44px 0 var(--ca-white-10);
  }
  .goal_to_find_we_hear_content .sticky_on_tablets {
    position: sticky;
    top: 100px;
  }
}

/* Mobile Only (up to 600px) */
@media (max-width: 600px) {
  .goal_to_find_we_hear_title_fact {
    position: relative !important;
    top: 0;
    max-width: 100%;
    width: 100%;
  }
  .goal_to_find_we_hear_content { text-align: center; padding-top: 16px; }
  .goal_to_find_we_hear_content li:first-of-type { margin-bottom: 6px; }
  .goal_to_find_we_hear_content .frame {
    box-shadow: 0 44px 44px 0 var(--ca-white-10);
  }

  /* Coming soon badge mobile adjustment */
  .coming_soon_badge {
    top: 12px;
    right: 12px;
    font-size: 10px;
    padding: 3px 8px;
  }

  .goal_to_find_offload_calls { margin-top: 16px; }
}

/* new code below this  */
/* ================================
   Problem section scroll slider
================================ */

@media (min-width: 1141px) {
  .problem_slider {
    position: relative;
    overflow: hidden;
  }

  .problem_slider_track {
    display: flex;
    width: calc(200% + 20px); /* Add the gap */
    gap: 20px; /* This creates the actual gap */
    will-change: transform;
  }

  .problem_slide {
    width: calc(50% - 10px);;
    flex-shrink: 0;
  }
  .problem_slide--solutions {
    padding-right: 2px;
  }
  .problem_slider_pagination {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    justify-content: center;
  }

  .problem_slider_pagination .pagination_bullet_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s ease;
  }

  .problem_slider_pagination .pagination_bullet_dot.pagination_bullet_dot_active {
    background: var(--cl-white);
    width: 32px !important;
    border-radius: 12px !important;
  }
  .problem_slider_viewport {
    overflow: hidden;
    width: 100%;
  }
}
@media screen and (max-width: 1140px) {
  .problem_slider_track {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

/* ================================================ */
/* Problem Section - Clickable Tabs                 */
/* ================================================ */
.problem_tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.problem_tab {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-family);
  color: rgba(255,255,255,0.6);
}

.problem_tab:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}

.problem_tab.active {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.problem_panels {
  position: relative;
  min-height: 320px;
}

.problem_panel {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.problem_panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .problem_tabs {
    justify-content: center;
  }
  .problem_tab {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* Problem Toggle - Underline Style (matches hero toggle) */
.problem_toggle {
  display: inline-flex;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 20px;
}
.problem_toggle_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  border-bottom: 2px solid transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.problem_toggle_btn:hover {
  color: var(--cl-white);
}
.problem_toggle_btn.active {
  color: var(--cl-white);
  border-bottom-color: var(--cl-green);
}
@media (max-width: 600px) {
  .problem_toggle { gap: 24px; }
  .problem_toggle_btn { font-size: 14px; padding: 8px 2px; }
}

/* ================================================ */
/* end of Problem section / Goal to find */
/* ================================================ */

/* ================================================ */
/* Solution / Meet ai recruiting agents */
/* ================================================ */
.how_is_mokka_different_item { background-color: var(--ca-white-70); }

.ai_agents_img_wrapper {
  border-radius: 20px;
  background: var(--background-color-3);
  flex-shrink: 0;
  align-self: stretch;
}

/* Rows */
.how_is_mokka_different_row {
  grid-template-columns: 30px 1fr;
}
/* Row Icons */
.how_is_mokka_different_row_icon {
  margin-right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
}
.ai_agents_row_icon {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 12px;
}
.worker_hiring_wrapper { padding: 0px 0px 40px; }
.ai_recruiting_agents_grid {
  grid-template-columns: 7fr 4fr;
}
.ai_recruiting_agents_grid ul li {
  border: 2px solid var(--cl-white);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ai_recruiting_agents_grid ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 var(--ca-black-15);
  border-color: var(--ca-black-20);
}
.ai_recruiting_agents_grid ul li.active {
  border: 2px solid var(--cl-green-dark);
  background: var(--cl-white);
  box-shadow: 0 6px 10px 0 var(--ca-black-20);
}
@media screen and (min-width: 1141px) {
  .ai_recruiting_agents_grid ul li {
    cursor: pointer;
    transition: all 0.4s ease-out;
  }
  .ai_recruiting_agents_grid ul li:hover {
    background: var(--ca-white-80);
  }
}

/* Desktop-only image stacking */
@media screen and (max-width: 1140px) {
  .ai_recruiting_agents_grid {
    grid-template-columns: 1fr;
  }
  .ai_recruiting_agents_grid ul li,
  .ai_recruiting_agents_grid ul li.active {
    border: 2px solid var(--cl-white);
    background: var(--cl-white);
  }
  .ai_recruiting_agents_grid > .left {
    position: relative;
    overflow: hidden; /* prevents bleed into next section */
  }

  .ai_recruiting_agents_grid .left picture {
    position: absolute;
    inset: 0;
    width: 100%;
    display: none;
    pointer-events: none;
  }

  .ai_recruiting_agents_grid .left picture img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ai_recruiting_agents_grid .left picture:first-child {
    display: block;
  }
  .ai_recruiting_agents_grid ul li.active,
  .ai_recruiting_agents_grid ul li {
    box-shadow: 0px 1px 7px var(--ca-black-10);
  }
}

/* ================================================ */
/* end of Solution / Meet ai recruiting agents */
/* ================================================ */

/* ================================================ */
/* AI Agents Scroll-Triggered Section (A1c design) */
/* ================================================ */
.ai-agents-scroll-section {
  background: var(--bg-grey-2);
}

.ai-agents-header {
  padding: 0px 20px 40px;
  text-align: center;
}

/* Scroll container */
.ai-agents-scroll-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px;
  gap:100px;
}

/* Slide sections with spring animation */
.ai-agents-slide-section {
  display: flex;
  align-items: center;
  padding: 0px;
  overflow: visible;
}

.ai-agents-slide-content {
  display: grid;
  grid-template-columns: 2fr 1.25fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-agents-slide-section.visible .ai-agents-slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate layout for even sections */
.ai-agents-slide-section:nth-child(even) .ai-agents-slide-content {
  grid-template-columns: 1.25fr 2fr;
}

.ai-agents-slide-section:nth-child(odd) .ai-agents-info-col { order: 2; }
.ai-agents-slide-section:nth-child(odd) .ai-agents-visual-col { order: 1; }

/* Feature list */
.ai-agents-feature-item {
  border: 2px solid var(--cl-white);
  background: var(--ca-white-10);
}
.ai-agents-feature-item img { flex-shrink: 0; }
.ai-agents-scroll-section .p_block_section_100 {
  padding-bottom: 40px !important;
}

/* Mobile responsive */
@media screen and (max-width: 1140px) {
  .ai-agents-header {
    padding: 0px;
  }
  .ai-agents-slide-content,
  .ai-agents-slide-section:nth-child(even) .ai-agents-slide-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ai-agents-slide-section:nth-child(odd) .ai-agents-info-col,
  .ai-agents-slide-section:nth-child(odd) .ai-agents-visual-col {
    order: unset;
  }
  .ai-agents-scroll-container {
    gap: 44px;
    padding-bottom: 0px;
  }
  .ai-agents-feature-item { padding: 8px !important; }
  .ai-agents-feature-item img {
    width: 26px;
    height: 26px;
  }
  .ai-agents-scroll-section .p_block_section_100 {
    padding-bottom: 0px !important;
  }
}

/* ================================================ */
/* end AI Agents Scroll-Triggered Section */
/* ================================================ */


/* ================================================ */
/* B1 Progressive Accordion - Knowledge Worker Section */
/* ================================================ */

.knowledge-worker-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.accordion-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  padding-right: 16px;
}

.accordion-title .title-accent {
  display: block;
  color: var(--cl-green-dark);
}

.accordion-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: rgba(0, 0, 0, 0.4);
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-inner {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.accordion-row-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.accordion-row-icon img {
  width: 100%;
  height: 100%;
}

.accordion-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  padding-top: 4px;
}

/* Progressive reveal animation */
.accordion-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.accordion-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.accordion-item:nth-child(1) { transition-delay: 0s; }
.accordion-item:nth-child(2) { transition-delay: 0.1s; }
.accordion-item:nth-child(3) { transition-delay: 0.2s; }

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .accordion-header {
    padding: 16px 20px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .accordion-inner {
    padding: 0 20px 20px;
  }

  .accordion-row p {
    font-size: 14px;
  }
}

/* ================================================ */
/* end B1 Progressive Accordion */
/* ================================================ */


.three_sections_wrapper {
  padding-top: 20px;
  background: url('/img/illustrations/home-dark-bg-bottom.jpg') no-repeat top left;
  background-size: 100% 100%;
}
.three_sections_wrapper .bg_white_10_imp {
  box-shadow: 0 44px 44px 0 rgba(255, 255, 255, 0.01);
}

@media screen and (max-width: 768px) {
  .three_sections_wrapper {
    padding-top: 20px;
  }
}

/* ================================================ */
/* Blue Sections / Hiring with mokka / Trust and transparency / How mokka helps stands out */
/* ================================================ */
.how_is_mokka_different_item .inner_wrapper { gap: 8px; }
.section_blue_fabc_img_abs {
  position: relative;
  right: 0;
  width: 26px;
  height: 26px;
}
.trust_and_transparency_content .list li::before { background-color: var(--ca-white-80); }
.mokka_stand_out .section_body { padding-bottom: 100px; }
/* Desktop (1140px+) and Tablet Large (900px-1139px) */
@media (min-width: 900px) {
  .trust_and_transparency_content { grid-template-columns: repeat(3, 4fr); }
  .hiring_with_mokka_content_wrapper { grid-template-columns: 2fr 1fr; }
  .hiring_with_mokka_content { grid-template-columns: 1fr 1fr; }
  .section_blue_fabc_img_abs {
    right: -16px;
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 899px) {
  .mokka_stand_out .section_body { padding-bottom: 50px; }
  .worker_hiring_wrapper { padding: 0px 0px 20px; }
}
/* ================================================ */
/* end of Blue Sections / Hiring with mokka / Trust and transparency. */
/* ================================================ */

/* ================================================ */
/* slider styles */
/* ================================================ */
.swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* max-width: 1112px; Prevent horizontal scroll */
  max-width: min(1200px, calc(100vw - 100px));
  padding-bottom: 56px !important;
}
.swiper-wrapper { width: auto; display: flex; }
.swiper-slide {
  width: 100%;
  flex-shrink: 0; /* Prevent slides from shrinking */
  height: auto !important;
  position: relative;
}
.swiper-pagination {
  top: auto;
  bottom: 18px !important;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  line-height: 12px;
  width: 100% !important;
  min-width: 200px;
}
.swiper-pagination-bullet {
  opacity: 1;
  background: var(--ca-black-10);
  width: 8px !important;
  height: 8px !important;
}
.swiper-pagination-bullet-active {
  background: var(--cl-black) !important;
  width: 32px !important;
  border-radius: 12px !important;
}
/* override swiper styles */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet { margin: 0px !important; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { transform: scale(1) !important; }
/* Slider Navigation Buttons */
.slider_nav_btns_wrapper {
  top: -48px;
}
.slider_nav_button {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  background: var(--bg-white);
  border: 0;
  outline: 0;
  transition: box-shadow 0.2s;
  cursor: pointer;
  z-index: 10;
  -webkit-appearance: none;
}
.slider_nav_button:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 10px 16px rgba(0, 0, 0, 0.06);
}
.slider_nav_button:hover .slider_nav_button_icon { transform: scale(1.1); }
.slider_nav_button:active { box-shadow: none; }
.slider_nav_button_icon { transition: transform 0.2s; }

@media (max-width: 899px) {
  .swiper { padding: 0 20px 36px; }
  .swiper { max-width: calc(100vw); }
  .slider_nav_button { display: none; }
}
/* ================================================ */
/* end of slider styles */
/* ================================================ */

/* mokka your secret weapon section */
.mokka_destiny_cards {
  background: var(--ca-white-70);
  box-shadow: 0 44px 44px 0 var(--ca-white-10);
}
/* end mokka your secret weapon section */

/* ================================================ */
/* Product section */
/* ================================================ */
#product .section_body { padding-top: 0px; }
.product_slide_header { padding: 32px; }
.product_slide_mob_content_wrapper { padding-inline: 24px; }
.product-slider .frame_br_24 { overflow: hidden; }
.home_product_slider .swiper { width: 100%; max-width: 100%; }
.product_slider_wrapper { padding-top: 40px; }

.screen_applicants_list_wrapper {
  position: relative;
  left: 32px;
}
.screen_applicants_list_wrapper .frame_grey_1 { padding: 16px 24px; }

.product_slide_badge {
  border: 1px solid var(--bg-grey-2);
  transform: rotate(4deg);
  float: right;
  margin-left: 8px;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
}
.product_checkmark_icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 12px;
  display: inline-block !important;
}

/* === HERO MEDIA TOGGLE / Product media toggle === */
.product-media-toggle {
  margin-bottom: 24px;
}
.product-media-toggle,
.hero-media-toggle {
  width: 100%;
  text-align: center;
}
.product-toggle-tabs,
.hero-toggle-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
/* Hero toggle tabs: keep inactive tab legible on both dark hero and lighter
   gradient background without a heavy backdrop that competes with CTAs. */
.hero-toggle-tab {
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.hero-toggle-tab:hover,
.hero-toggle-tab.active {
  color: var(--cl-white);
}
/* Desktop-only no-wrap utility (used in vertical-page H1 accent spans) */
.nowrap_desktop { white-space: normal; }
@media screen and (min-width: 1141px) {
  .nowrap_desktop { white-space: nowrap; }
}
.product-toggle-tabs {
  gap: 8px;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px;
  border-radius: 12px;
}
.product-toggle-tab,
.hero-toggle-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ca-black-60);
  transition: all 0.25s ease;
  border-bottom: 2px solid transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
} 
.product-toggle-tab {
  padding: 10px 18px;
  border-radius: 8px;
  border-bottom: 0px;
}

.hero-toggle-tab:hover {
  color: var(--cl-white);
}
.product-toggle-tab:hover {
  color: var(--cl-black);
  background: rgba(0, 0, 0, 0.04);
}

.hero-toggle-tab.active {
  color: var(--cl-white);
  border-bottom-color: var(--cl-green);
}
.product-toggle-tab.active {
  color: var(--cl-black-bg);
  background: var(--cl-green);
}

.hero-toggle-tab svg,
.product-toggle-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Media panels */
.hero-media-panel {
  display: none;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--ca-white-10);
}

.hero-media-panel.active {
  display: block;
}

.product-media-panel {
  display: none;
}
.product-media-panel.active {
  display: block;
}

/* Video - exactly match original hero_video */
.hero-media-panel video {
  width: 100%;
  aspect-ratio: 1.614 / 1;
  object-fit: cover;
  display: block;
}

/* Product demo container */
.product-demo-container {
  background: var(--cl-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
/* Demo overlay - uses Storylane preview image */
.demo-overlay,
.product-demo-overlay {
  aspect-ratio: 1.614 / 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.demo-overlay {
  background-image: url('https://storylane-prod-uploads.s3.us-east-2.amazonaws.com/company/company_737fbc65-73ba-441e-b6df-e5badc8d8be0/project/project_5d3cdb87-9b8c-410c-b741-c987603d522f/page/IV9Kt0hwaeNEHQjRqToLL.png');
}
.product-demo-overlay {
  background-image: url('https://storylane-prod-uploads.s3.us-east-2.amazonaws.com/company/company_737fbc65-73ba-441e-b6df-e5badc8d8be0/project/project_5d3cdb87-9b8c-410c-b741-c987603d522f/page/IV9Kt0hwaeNEHQjRqToLL.png');
}

.demo-overlay::before,
.product-demo-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.75) 0%, rgba(26, 31, 46, 0.65) 100%);
}
.demo-content,
.product-demo-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.demo-play-btn,
.product-demo-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cl-green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 40px rgba(187, 236, 83, 0.35);
}
.demo-play-btn:hover,
.product-demo-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 48px rgba(187, 236, 83, 0.45);
}

.demo-play-btn svg,
.product-demo-play-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--cl-black-bg);
  margin-left: 5px;
}
/* Click icon for interactive demo (cursor pointer) */
.demo-click-btn svg,
.product-demo-click-btn svg {
  fill: none;
  stroke: var(--cl-black-bg);
  stroke-width: 2;
  margin-left: 2px;
}
.demo-label,
.product-demo-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--cl-white);
  margin-bottom: 10px;
}
.demo-sublabel,
.product-demo-sublabel {
  font-size: 15px;
  color: var(--ca-white-70);
}

/* Storylane iframe container */
.storylane-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 1.614 / 1;
}

.storylane-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Storylane iframe container for product section */
.storylane-embed-product {
  position: relative;
  width: 100%;
  aspect-ratio: 1.614 / 1;
  background: var(--cl-white);
  border-radius: 24px;
  overflow: hidden;
}

.storylane-embed-product iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 600px) {
  .product_slide_header { padding: 24px 24px 12px; }
  .product_slide_img { width: 100%; }
  .screen_applicants_list_wrapper {
    left: 0px;
    padding-inline: 24px;
    padding-bottom: 24px;
  }
  .product_slide_badge {
    margin-left: 6px;
    margin-top: 4px;
  }
  .product_slider_wrapper { padding-top: 0px; }
  .hero-toggle-tabs {
    gap: 24px;
  }
  .hero-toggle-tab {
    font-size: 14px;
    padding: 8px 2px;
    color: var(--ca-white-70);
  }
  .product-toggle-tabs {
    gap: 4px;
    padding: 4px;
  }
  .product-toggle-tab {
    font-size: 13px;
    padding: 8px 12px;
  }
  .hero-toggle-tab svg,
  .product-toggle-tab svg {
    width: 14px;
    height: 14px;
  }
  .demo-play-btn,
  .product-demo-play-btn {
    width: 72px;
    height: 72px;
  }
  .demo-play-btn svg,
  .product-demo-play-btn svg {
    width: 28px;
    height: 28px;
  }
  .demo-label,
  .product-demo-label {
    font-size: 18px;
  }
}
/* ================================================ */
/* end of Product section */
/* ================================================ */

/* ================================================ */
/* Testimonials section */
/* ================================================ */
.testimonials_section .section_body,
.testimonials_section .section_body .section_inner { padding-inline: 0px !important; }
.testimonials_section .section_body .section_inner { max-width: 100%; }
/* ================================================ */
/* end of Testimonials section */
/* ================================================ */


/* ================================================ */
/* Case Studies section */
/* ================================================ */
/* Feedback Section */
.slider_section { width: 100%; }
.slider_section .section_body > .inner { position: relative; }

.case_study_wrapper,
.mokka_comparison_table {
  max-width: 100%;
}
.mokka_comparison_table {
  padding: 32px;
  border: 4px solid var(--cl-white);
  background: var(--ca-white-30);
}
.comparison_table {
  border-collapse: separate; /* Must be separate, not collapse */
  table-layout: fixed; /* Essential for column width control */
  border-spacing: 0 24px; /* Vertical spacing between rows */
}
.comparison_table_mobile_tabs { display: none; }
.comparison_table_mobile_tabs .active { display: flex; }

/* 2nd column (Before Mokka) */
.comparison_table th:nth-child(2),
.comparison_table td:nth-child(2) {
  width: calc((100% - 170px) * 0.5); /* Fixed percentage width */
}

/* 4th column (With Mokka) */
.comparison_table th:nth-child(4),
.comparison_table td:nth-child(4) {
  width: calc((100% - 170px) * 0.5); /* Same as 2nd column */
}
/* 1st column (Metric) - auto width based on content */
.comparison_table th:nth-child(1),
.comparison_table td:nth-child(1) {
  width: 120px; /* Adjusts based on content */
}
/* 3rd column (Arrow) - minimal fixed width */
.comparison_table th:nth-child(3),
.comparison_table td:nth-child(3) {
  width: 50px; /* Fixed small width for arrows */
}
.comparison_table tbody tr .col_1 { text-align: left; }
.comparison_table tbody tr td {
  text-align: center;
  vertical-align: middle;
  height: 90px;
}
.comparison_table tbody tr td .line_break_desktop_tablets_lg { margin-top: 5px; }
.comparison_table tbody tr .arrow_cell { padding-inline: 10px; }

/* Feedback Card */
.feedback { position: relative; height: 100%; }
.feedback_top { display: flex; justify-content: space-between; }
.feedback_label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.feedback_logo {
  width: 100%;
  max-width: 200px;
  max-height: 96px;
}
.feedback_chips_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
  margin: 16px 0 32px;
}
.feedback_chips_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feedback_description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.feedback_list { grid-row: 2/3; }

/* Desktop (1140px+) and Tablet Large (900px-1139px) */
@media (min-width: 900px) {
  .slider_section .section_body .inner {
    padding: 0 84px;
  }
}

/* Tablet Small (601px-899px) */
@media (min-width: 601px) and (max-width: 899px) {
  .slider_section .section_body .inner { margin: 0 -36px; }
  .case_study_wrapper,
  .mokka_comparison_table {
    width: calc(100% + 32px);
  }
}

/* Mobile Only (up to 600px) */
@media (max-width: 600px) {
  .slider_section .section_body .inner { margin: 0 -36px; }
  .feedback_logo {
    max-width: 160px;
    max-height: 40px;
  }
  .comparison_table { display: none; }
  .comparison_table_mobile_tabs { display: flex; }
  .case_study_wrapper,
  .mokka_comparison_table {
    width: calc(100% + 32px);
  }
  .mokka_comparison_table {
    background: var(--cl-grey-2);
    min-height: 570px;
    padding: 20px 16px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 370px) {
  .mokka_comparison_table {
    min-height: 595px;
  }
}
@media (max-width: 1139px) {
  .feedback_chips_list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
  }
}
@media (max-width: 899px) {
  .feedback_top {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .feedback_description { grid-template-columns: 1fr; gap: 0; }
  .feedback_list { grid-row: auto; margin-top: 12px; }
  .feedback_list:first-of-type { margin-bottom: 24px; }
}
/* ================================================ */
/* end of Case Studies section */
/* ================================================ */

/* ================================================ */
/* What candidates say section */
/* ================================================ */
#what-candidates-say .section_body {
  padding-bottom: 80px;
}
.mokka_for_candidates_grid {
  grid-template-columns: 7fr 4fr;
}
.mokka_for_candidates_grid .sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
}
/* Candidates stat badge - positioned in top-right of slide card */
.what_candidates_say_slide .candidates_stat_badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-block;
  background: var(--cl-green-light);
  color: #4B6711;
  font-size: 12px;
  font-weight: var(--fw-medium);
  padding: 6px 12px;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .what_candidates_say_slide .candidates_stat_badge {
    position: static;
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    font-size: 11px;
    padding: 5px 10px;
  }
}
.what-candidates-say-slider .swiper-wrapper .swiper-slide { min-height: 100%; }
.what_candidates_say_slide {
  position: relative;
  height: 100%;
}
.what_candidates_say_slide_emoji { margin-right: 16px; }

/* Reviews grid */
.what_candidates_say_reviews {
  display: grid;
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
}
/* Rating stars */
.what_candidates_say_review_rating { display: flex; gap: 4px; }
.what_candidates_say_review_rating .icon { height: 24px; fill: #ffc224; }
/* Individual review card */
.what_candidates_say_review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Review footer */
.what_candidates_say_review_footer { margin-top: auto; }

/* Mobile (up to 600px) and Tablet-sm (601-900px) */
@media (max-width: 900px) {
  .what_candidates_say_review_rating { gap: 6px; }
  .mokka_for_candidates_grid {
    grid-template-columns: 1fr;
  }
  .mokka_for_candidates_grid .sticky {
    position: relative;
    top: 0;
  }
}

@media (min-width: 1141px) {
  .what_candidates_say_reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
  }
  .what_candidates_say_review { gap: 16px; }
}
/* ================================================ */
/* end of What candidates say section */
/* ================================================ */

/* ================================================ */
/* What team leaders say section */
/* ================================================ */

/* Column Layout */
.what_talent_leader_say_column {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 14px;
  height: auto;
}
/* Testimonial Base Styles */
.testimonial_secondary {
  display: flex;
  height: 100%;
}

/* Secondary Testimonial Styles */
.testimonial_secondary {
  flex-direction: column;
  justify-content: space-between;
}
.testimonial_secondary .testimonial_description { margin-top: 12px; }
.testimonial_secondary .testimonial_message { flex-grow: 1; }
.testimonial_secondary .testimonial_additional {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.testimonial_secondary .testimonial_picture { flex-shrink: 0; aspect-ratio: 1 / 1; }
.testimonial_secondary .testimonial_picture .testimonial_picture_image {
  border-radius: 24px;
  object-fit: cover;
}
.testimonial_secondary .testimonial_column_footer_company { margin-top: 6px; }
.linkedin_img { top: 1px; }

@media (max-width: 900px) {
  .testimonial_secondary .testimonial_additional { gap: 8px; }
}
@media (max-width: 600px) {
  .what_talent_leader_say_column {
  grid-template-rows: repeat(1, 1fr);
  height: 100%;
}
}

/* LinkedIn profile links */
.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 0.85em;
  color: #0077b5;
  text-decoration: none;
  transition: opacity 0.2s;
}

.testimonial-linkedin:hover {
  opacity: 0.7;
}

.testimonial-linkedin svg {
  width: 16px;
  height: 16px;
}
/* ================================================ */
/* end of What team leaders say section */
/* ================================================ */

/* ================================================ */
/* footer section */
/* ================================================ */
/* Footer Base Styles */
.footer_body { color: var(--text-contrast); background: var(--bg-dark); }
.footer_content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 52px 20px;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}
.footer_logo { justify-self: start; }
.footer_link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  text-decoration: none;
  color: var(--text-contrast);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer_link:hover {
  opacity: 1;
}
.footer_link p {
  margin-bottom: 0px;
}

.footer_link:hover .footer_link_text { border-bottom-color: currentColor; }
.footer_link_text {
  transform: translateY(1px);
  border-bottom: 1px solid transparent;
}
.footer_text {
  width: 100%;
  opacity: 0.4;
  text-align: right;
}
.footer_logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.footer_dropdown_menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;

  background: rgba(69, 69, 69, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  padding: 6px 0;
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;

  z-index: 1000;
  list-style: none;
}

.footer_dropdown_menu li a {
  line-height: 120%;
}
.footer_dropdown .header_nav_link {
  padding-block: 4px !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media only screen and (min-width: 900px) and (max-width: 1140px) {
  .footer_dropdown .header_nav_link  {
    font-size: var(--text-p2-fz);
    line-height: var(--text-p2-lh);
    padding: 4px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

/* Tablet Small and Mobile */
@media (max-width: 899px) {
  .page_footer { padding: 0px; }
  .footer_content {
    display: flex;
    flex-wrap: wrap;
    padding: 32px 16px;
  }
  .footer_dropdown_menu {
    position: absolute;
    bottom: auto;
    top: 100%;
    left: 0;
    margin-bottom: 8px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .footer_dropdown .header_nav_link  {
    font-size: var(--text-p2-fz);
    line-height: var(--text-p2-lh);
    padding-inline: 0px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .footer_logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer_logos img {
    width: 50px;
    height: 50px;
  }
}

/* Desktop (1140px+) and Tablet (601px - 1139px) */
@media (min-width: 601px) {
  .footer_links {
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 601px) and (max-width: 899px) {
  .footer_links { flex-direction: column; width: 100%; }
}
@media (max-width: 600px) {
  .footer_links { width: 100%; }
  .footer_text { text-align: left; }
}
/* ================================================ */
/* end of footer section */
/* ================================================ */

/* ================================================ */
/* Calendly widget popup and Pricing popup styles */
/* ================================================ */
/* Calendly Widget Wrapper */
.pricing_popup_wrapper,
.calendly_inline_widget_wrapper_2,
.calendly_inline_widget_wrapper_3,
.calendly_inline_widget_wrapper {
  visibility: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto; /* Enable scrolling for the entire popup */
}
/* Opened state */
/*.pricing_popup_wrapper, temporary */
.pricing_popup_wrapper_opened,
.calendly_inline_widget_wrapper_opened,
.calendly_inline_widget_wrapper_2_opened,
.calendly_inline_widget_wrapper_3_opened {
  visibility: visible;
  opacity: 1;
}
/* Inner container */
.calendly_inline_widget_wrapper_inner,
.calendly_inline_widget_wrapper_inner_2 { border-radius: 32px; }
.pricing-slider {
  padding: 20px;
  margin: -20px;
  width: calc(100% + 40px);
  flex: 1; /* Take available space */
  min-height: 0; /* Important for flex children */
}
/* Ensure swiper container can scroll */
.pricing-slider .swiper { height: 100%; }
.pricing-slider .swiper-wrapper { height: auto; } /* Make slides adjust to content */
.pricing-slider .swiper-pagination { display: none; } /* display on mobile only */
.pricing_popup_inner {
  padding: 36px;
  width: min(1200px, 100%);
  display: block;
}
.pricing_popup_inner {
  max-height: 90vh;
  overflow: auto;
}
.btn_close_pricing_popup {
  padding: 0px;
  position: relative;
  top: -16px;
  right: -16px;
}
.btn_close_pricing_popup img { width: 28px; height: 28px !important; }
.pricing-slider .package_badge,
.pricing_popup_inner .package_badge {
  position: absolute;
  top: -14px;
  right: -14px;
  padding: 6px 12px;
}
.pricing-slider .blue_badge,
.pricing_popup_inner .blue_badge { background-color: #E9EEFF; }
.pricing-slider .blue_badge .text,
.pricing_popup_inner .blue_badge .text { color: #0060D1; }
.pricing-slider .transparent_blue_badge {
  background: rgba(97, 170, 255, 0.20);
  color: #90C3FF;
}
.pricing-slider .grey_badge,
.pricing_popup_inner .grey_badge { background-color: var(--bg-grey-2); }
.pricing-slider .grey_badge .text,
.pricing_popup_inner .grey_badge .text { color: var(--ca-dark-grey-60); }
.pricing-slider .green_badge,
.pricing_popup_inner .green_badge { background-color: var(--cl-green-light); }
.pricing-slider .green_badge_transparent_16 { background-color: var(--cl-green-light-16); }
.pricing-slider .green_badge .text,
.pricing_popup_inner .green_badge .text { color: var(--cl-green-dark-2); }

.body_lock { overflow: hidden; }
.pricing-slider .swiper-slide {
  padding: 32px;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06);
  height: auto; /* Allow slide height to adjust to content */
}
.pricing_popup_description { margin: 24px 0px; }
.pricing_popup_inner .pricing-slider { max-width: 100%; }

@media (min-width: 900px) and (max-width: 1320px) {
  .pricing-slider { max-width: calc(100% + 40px); }
}

@media (max-width: 900px) {
  .calendly_inline_widget_wrapper_inner { padding: 16px; }
  .pricing_popup_inner { padding: 12px 16px; }
  .pricing_popup_inner { max-height: 100%; }
  .pricing_popup_description { margin: 16px 0px; }
  /* Enable touch scrolling for swiper */
  .pricing-slider .swiper { overflow: visible; }
  .pricing-slider {
    padding: 0px 0px 50px !important;
    margin: 0px;
    width: 100%;
    height: auto !important;
  }
  .pricing_popup_wrapper .title_h2 { font-size: 24px; line-height: 32px; }
  .btn_close_pricing_popup { top: -8px; right: -8px; }
}
@media (max-width: 1140px) {
  .pricing-slider .swiper-pagination { display: flex; }
  .pricing-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--ca-white-70);
  }
  .pricing-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--cl-white) !important;
    width: 32px !important;
    border-radius: 12px;
  }
}

/* Combined toggle bar */
.combined_toggle_bar {
  align-self: stretch;
  border-bottom: 2px solid var(--ca-white-10);
  gap: 20px;
}

/* Unified toggle styling */
.billing_toggle,
.model_toggle {
  display: inline-flex;
}
.billing_toggle_slider,
.model_toggle_slider {
  position: absolute;
  top: 100%;
  left: 0px;
  height: 2px;
  background-color: var(--cl-green-dark);
  border-radius: 6px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
.billing_toggle_option,
.model_toggle_option {
  position: relative;
  padding: 20px 16px;
  background-color: transparent;
  font-family: var(--ff-text);
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-regular);
  color: var(--ca-white-50);
  cursor: pointer;
  transition: color 0.2s ease;
  border: none;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.billing_toggle_option:hover:not(.active),
.model_toggle_option:hover:not(.active) {
  color: var(--cl-white);
}
.billing_toggle_option.active,
.model_toggle_option.active {
  color: var(--cl-green);
  font-weight: var(--fw-medium);
}
/* Badge styling */
.toggle_benefit_badge {
  padding: 1px 6px 2px;
  gap: 10px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid var(--cl-white);
}
.billing_toggle_option.active .toggle_benefit_badge,
.model_toggle_option.active .toggle_benefit_badge {
  border: 1px solid var(--cl-green);
}
.billing_toggle_switch {
  width: 55px;
  height: 30px;
  border-radius: 999px;
  background: var(--ca-white-70);
  border: none;
  cursor: pointer;
  position: relative;
  margin: 0px 16px;
}
.billing_toggle_switch .switch_knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cl-white);
  transition: transform 0.25s ease;
}
.billing_toggle_switch.is-on {
  background: var(--cl-green);
}
.billing_toggle_switch.is-on .switch_knob {
  transform: translateX(24px);
}
.price-display { transition: opacity 0.15s ease; }
.price-display.updating { opacity: 0.6; }
.billing-frequency { transition: opacity 0.15s ease; }
.billing-frequency.updating { opacity: 0.6; }

/* Pricing display states */
.pricing-content { display: none; }
.pricing-content.active { display: block; }
/* Usage-based pricing breakdown */
.flex_pricing_breakdown {
  background: #f8f8f9;
  border-radius: 8px;
  padding: 16px;
  margin: 12px 0;
}
.flex_pricing_line {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
  font-size: 13px;
}
.flex_pricing_line .label {
  color: var(--ca-black-60);
}
.flex_pricing_line .value {
  font-weight: var(--fw-semibold);
  color: var(--text-default);
}
.flex_pricing_total {
  border-top: 1px solid var(--cl-grey-2);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: var(--fw-semibold);
}
/* Sourcing pricing box within pricing cards */
.sourcing_pricing_box {
  background: var(--bg-grey-1);
  border: 1px solid var(--cl-grey-2);
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0;
  text-align: center;
}
.transparent_sourcing_pricing_box {
  margin: 24px 0px 12px;
  padding: 8px 16px;
}
.flex_pricing_breakdown_transparent {
  margin: 0px;
  padding: 8px 16px;
}

@media (max-width: 1024px) {
  .combined_toggle_bar { gap: 32px; }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .combined_toggle_bar {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .billing_toggle_option {
    padding: 8px 16px;
    /* font-size: 16px; */
    min-width: 70px;
  }
  .billing_toggle_option, .model_toggle_option {
    padding-inline: 10px;
  }
  .billing_toggle_switch { scale: 0.8; }
}

/* ================================================ */
/* end of Calendly popup & Pricing popup styles */
/* ================================================ */

/* ================================================ */
/* Cookie notice styles */
/* ================================================ */

/* Cookie Banner Styles */
.cookie_banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.cookie_banner_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 700px;
  background-color: #000000; /* $bg-dark */
  border-radius: 10px;
  border: 2px solid #ffffff; /* $border-white */
}
.cookie_banner_text { margin: 0; }

/* Mobile Styles */
@media (max-width: 600px) {
  .cookie_banner { bottom: 16px; left: 16px; right: 16px; }
  .cookie_banner_content { flex-direction: column; gap: 12px; }
}
/* ================================================ */
/* end of Cookie notice styles */
/* ================================================ */

/* ========== Header Dropdown Menu ========== */
.header_nav_item_dropdown {
  position: relative;
}

.header_dropdown_arrow {
  display: inline-block;
  margin-left: 4px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
  vertical-align: middle;
}
.header_nav_item_dropdown:hover .header_dropdown_arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.header_dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: rgba(69, 69, 69, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 6px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(-8px);
  z-index: 1000;
  list-style: none;
}

.header_nav_item_dropdown:hover .footer_dropdown_menu,
.header_nav_item_dropdown:hover .header_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* for mobiles */
@media (hover: hover) and (pointer: fine) {
  .header_nav_item_dropdown:hover .header_dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


.header_dropdown_item {
  list-style: none;
}

.header_dropdown_link {
  display: block;
  padding: 8px 16px;
  color: var(--text-contrast);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.header_dropdown_link {
  opacity: 0.85;
}

.header_dropdown_link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* ================================================ */
/* Header adjustments for 9-item nav (added Startups) */
/* ================================================ */

/* Prevent nav items from wrapping */
.header_nav_link {
  white-space: nowrap;
}

.header_nav_list {
  gap: 0 !important;
}

/* Keep Resources dropdown arrow inline */
.header_nav_item_dropdown .header_nav_link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* Scrolled header overflow fix:
   Base rule uses width: auto; left: 40px; right: 40px
   Old fit-content !important overrides removed */

/* ================================================ */
/* Social Proof Bar (inside hero section) */
/* ================================================ */
.social_proof_metrics {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: fit-content;
}
.social_proof_metric .text_semibold {
  font-size: 26px;
}

.social_proof_bar {
  padding: 120px 0px 60px;
}

.social_proof_bar .social_proof_label {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.social_proof_marquee {
  width: 100%;
  overflow: hidden;
  /* Symmetric fade - 60px on each side */
  mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}

.social_proof_marquee_track {
  display: flex;
  gap: 72px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.social_proof_marquee_track span {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.70);
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%); /* -25% for 4 copies (loops after 1 full set) */
  }
}

.social_proof_marquee:hover .social_proof_marquee_track {
  animation-play-state: paused;
}

/* Tablet responsive */
@media only screen and (max-width: 1139px) {
  .social_proof_bar {
    padding: 120px 0px 40px;
    gap: 24px;
  }

  .social_proof_metrics {
    gap: 32px;
  }
  .social_proof_metric {
    padding: 12px;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--ca-white-20);
    box-shadow: 0 44px 44px 0 var(--ca-white-10);
    height: 100%;
  }
  .social_proof_metric .text_semibold {
    font-size: 20px;
  }
}

/* Mobile responsive */
@media only screen and (max-width: 600px) {
  .social_proof_bar {
    padding-top: 60px;
    padding-bottom: 16px;
    gap: 20px;
  }
  .social_proof_metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .social_proof_metrics > *:nth-child(3) {
    grid-column: 1 / -1; /* Span from first to last column line */
  }
  .social_proof_metric {
    padding: 12px;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--ca-white-20);
    box-shadow: 0 44px 44px 0 var(--ca-white-10);
    height: 100%;
  }
  .social_proof_metric .text_semibold {
    font-size: 22px;
  }
  .social_proof_marquee_track {
    gap: 30px;
  }
  .social_proof_marquee_track span {
    font-size: 20px;
    line-height: 110%;
  }
}
