.boris-help-testimonial-quote {
  margin: 0;
  flex: 1;
}
.boris-help-testimonial-author {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
/* Utility classes */
.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .sm\:block {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex !important;
  }
  .lg\:hidden {
    display: none !important;
  }
}

.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }

/* ========================================
   Base
   ======================================== */

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

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  background-color: #141527;
  color: #ffffff;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

/* ========================================
   Layout
   ======================================== */

.container-site {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container-navbar {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
}

.navbar-inner {
  height: 109px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 109px;
  width: 277px;
}

.navbar-logo-icon {
  width: 150px;
  height: 100px;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.navbar-logo-wordmark {
  width: 169px;
  height: 119px;
  aspect-ratio: 169 / 119;
  object-fit: contain;
  position: absolute;
  left: 108px;
  top: -4px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #000000;
  transition: color 0.2s;
  text-decoration: none;
}

.navbar-link:hover {
  color: #56BED6;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 32px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FAFDFF;
  background: #05203D;
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-contact:hover {
  background: #0a3260;
}

.navbar-mobile-toggle {
  padding: 8px;
  color: #000000;
}

.navbar-mobile-toggle:hover {
  color: #56BED6;
}

.navbar-mobile-menu {
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-mobile-menu a {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
  text-align: center;
}

.navbar-mobile-menu a:hover {
  color: #56BED6;
}

.navbar-mobile-menu .btn-contact {
  display: inline-flex;
  width: auto;
  margin-top: 8px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 109px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #141527;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34, 211, 238, 0.08), transparent 60%);
}

.hero-content {
  position: relative;
  padding-top: 113px;
  padding-bottom: 80px;
}

.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 450px;
}

.hero-heading-br {
  display: none;
}

.hero-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-mascot-mobile {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: none;
}

.hero-heading {
  width: 396px;
  max-width: 100%;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 55px;
  font-style: normal;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-checklist-icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-checklist span {
  color: #FFFFFF;
}

.hero-ctas {
  display: flex;
  width: 362px;
  max-width: 100%;
  height: 30px;
  align-items: center;
  gap: 16px;
}

.btn-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 8px;
  flex: 1 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #56BED6;
  border: 1px solid #56BED6;
  border-radius: 8px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: #3dafc5;
  color: #3dafc5;
  background: rgba(86, 190, 214, 0.05);
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 8px;
  flex: 1 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #141527;
  background: #56BED6;
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #3dafc5;
}


.hero-mascot {
  position: absolute;
  width: 29%;
  max-width: 348px;
  height: auto;
  right: 34%;
  top: -50px;
  z-index: 10;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .hero-mascot {
    width: 180px;
    right: auto;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
  }
}

.hero-illustration {
  position: absolute;
  width: 73%;
  max-width: 879px;
  height: auto;
  right: -71px;
  top: 35px;
  object-fit: contain;
  z-index: 5;
}

@media (max-width: 1023px) {
  .hero-illustration {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    top: auto;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
   How B.O.R.I.S Works Section
   ======================================== */

.how-it-works {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .how-it-works {
    min-height: 813px;
  }
}

.how-it-works-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(86, 190, 214, 0.4) 0%, rgba(20, 21, 39, 0.4) 100%);
}

.how-it-works-inner {
  position: relative;
  padding-top: clamp(48px, 8vw, 101px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  min-width: 0;
}

@media (min-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 32px;
  }
}

.how-it-works-heading {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 26px;
}

.how-it-works-description {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  max-width: 100%;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .how-it-works-description {
    max-width: 363px;
  }
}

.how-it-works-steps {
  max-width: 100%;
}

@media (min-width: 1024px) {
  .how-it-works-steps {
    max-width: 363px;
  }
}

.how-it-works-step {
  border-top: 0.5px solid #ffffff;
  padding: 16px 0;
}

.how-it-works-step:last-child {
  border-bottom: 0.5px solid #ffffff;
}

.how-it-works-step-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 4px;
}

.how-it-works-step-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
}

.how-it-works-cta {
  margin-top: 40px;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 6px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #141527;
  background: #56BED6;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-teal:hover {
  background: #3dafc5;
}

.how-it-works-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 723 / 635;
  display: none;
}

@media (min-width: 1024px) {
  .how-it-works-visual {
    display: block;
  }
}

.how-it-works-visual img {
  position: absolute;
  height: auto;
  max-width: 100%;
}

img.how-it-works-mascot {
  width: 419px;
  height: 629px;
  max-width: none;
  aspect-ratio: 417 / 626;
  right: -25%;
  top: -3%;
  z-index: 4;
  transform: scaleX(-1);
  object-fit: cover;
  pointer-events: none;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  img.how-it-works-mascot {
    width: 320px;
    height: 480px;
    right: -15%;
  }
}

.context-box {
  position: absolute;
  width: 384px;
  height: 202px;
  max-width: 53%;
  border-radius: 12px;
  background: linear-gradient(270deg, #686868 0.07%, #141527 162.23%);
  top: 9px;
  left: 35%;
  z-index: 1;
}

.context-box-tab {
  position: absolute;
  width: 34px;
  height: 26px;
  left: 7.42px;
  top: 9px;
  background: #92EBFF;
  border-radius: 22px 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.context-box-tab span {
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}

.context-box-tab-ext {
  position: absolute;
  width: 66px;
  height: 26px;
  left: 41.42px;
  top: 9px;
  background: rgba(5, 32, 61, 0.2);
  border-radius: 0 22px 22px 0;
}

.context-box-tab-label {
  position: absolute;
  left: 49.42px;
  top: 9px;
  height: 26px;
  display: flex;
  align-items: center;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #92EBFF;
}

.context-box-screen {
  position: absolute;
  width: calc(100% - 16px);
  height: 152px;
  left: 8px;
  top: 42px;
  background: linear-gradient(180deg, #262745 0%, #1B1C2E 100%);
  border-radius: 11px;
  padding: 10px 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.context-box-title {
  width: 335px;
  max-width: 100%;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
}

.context-box-steps {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  width: 335px;
  max-width: 100%;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 275;
  font-size: 10px;
  line-height: 15px;
  color: #FFFFFF;
}

.context-box-steps li::before {
  content: "✓ ";
  margin-right: 2px;
}

/* Interaction Box (Screen 2) */
.interaction-box {
  position: absolute;
  width: 427px;
  height: 146px;
  max-width: 59%;
  border-radius: 15px;
  background: linear-gradient(270deg, #686868 0.07%, #141527 162.23%);
  top: 232px;
  left: 21%;
  z-index: 2;
}

.interaction-box-tab {
  position: absolute;
  width: 37px;
  height: 26px;
  left: 8.56px;
  top: 9px;
  background: #92EBFF;
  border-radius: 22px 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interaction-box-tab span {
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}

.interaction-box-tab-ext {
  position: absolute;
  box-sizing: border-box;
  width: 73.352px;
  height: 25.629px;
  left: 45.56px;
  top: 9px;
  background: rgba(5, 32, 61, 0.20);
  border-radius: 0 22px 22px 0;
}

.interaction-box-tab-label {
  position: absolute;
  left: 45.56px;
  top: 9px;
  width: 73.352px;
  height: 25.629px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #92EBFF;
}

.interaction-box-screen {
  position: absolute;
  width: calc(100% - 16px);
  height: 95px;
  left: 8px;
  top: 42px;
  background: linear-gradient(180deg, #262745 0%, #1B1C2E 100%);
  border-radius: 11px;
  padding: 10px 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.interaction-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.interaction-msg-avatar-wrap {
  position: relative;
  width: 40px;
  height: 34px;
  flex-shrink: 0;
}

.interaction-msg-avatar-bg {
  position: absolute;
  width: 34px;
  height: 34px;
  left: 3px;
  top: 4px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #B3B3B3;
  border-radius: 6px;
}

.interaction-msg-avatar {
  position: absolute;
  width: 40px;
  height: 27px;
  left: 0;
  top: 4px;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  z-index: 1;
}

.interaction-msg-content {
  flex: 1;
  min-width: 0;
}

.interaction-msg-header {
  margin: 0;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #FFFFFF;
}

.interaction-msg-header span {
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

.interaction-msg-text {
  margin: 6px 0 0;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  color: #FFFFFF;
}

/* Evidence Box (Screen 3) */
.evidence-box {
  position: absolute;
  width: 404px;
  height: 237px;
  max-width: 56%;
  border-radius: 11px;
  background: linear-gradient(270deg, #686868 0.07%, #141527 162.23%);
  top: 400px;
  left: 35%;
  z-index: 3;
}

.evidence-box-tab {
  position: absolute;
  width: 34px;
  height: 26px;
  left: 11px;
  top: 9px;
  background: #92EBFF;
  border-radius: 22px 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evidence-box-tab span {
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}

.evidence-box-tab-ext {
  position: absolute;
  width: 66px;
  height: 26px;
  left: 45px;
  top: 9px;
  background: rgba(5, 32, 61, 0.20);
  border-radius: 0 22px 22px 0;
}

.evidence-box-tab-label {
  position: absolute;
  left: 53px;
  top: 9px;
  height: 26px;
  display: flex;
  align-items: center;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #92EBFF;
}

.evidence-box-screen {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 42px;
  bottom: 11px;
  background: linear-gradient(180deg, #262745 0%, #1B1C2E 100%);
  border-radius: 11px;
  padding: 10px 12px;
  overflow: hidden;
}

.evidence-box-question {
  margin: 0;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: #FFFFFF;
}

.evidence-box-text {
  margin: 6px 0 0;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #FFFFFF;
}

.evidence-box-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #FFFFFF;
}

.evidence-box-list li::before {
  content: "• ";
}

.how-it-works-step-visual {
  display: none;
}

/* ========================================
   Where Teams Get Slowed Down Section
   ======================================== */

.slowed-down {
  width: 100%;
  background: #F4F4F4;
}

.slowed-down-inner {
  max-width: 1200px;
  height: 430px;
  padding-top: 51px;
  padding-bottom: 70px;
  box-sizing: border-box;
}

.slowed-down-heading {
  width: 426px;
  height: 41px;
  max-width: 100%;
  margin: 0 auto 50px;
  white-space: nowrap;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  color: #141527;
  text-align: center;
}

.slowed-down-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .slowed-down-cards {
    flex-direction: row;
    justify-content: center;
  }
}

.slowed-down-card {
  position: relative;
  flex: 1;
  height: 209px;
  max-width: 100%;
  border-radius: 17px;
  background: linear-gradient(124deg, #05203D -2.57%, #ADABFF 123.91%);
  padding: 17px;
  box-sizing: border-box;
}

.slowed-down-card-icon {
  position: absolute;
  top: 30px;
  left: 30px;
}

.slowed-down-card-stat {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 25px;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin: 0;
}

.slowed-down-card:last-child {
  padding: 17px;
}

.slowed-down-card-stat-large {
  position: static;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 8px;
}

.slowed-down-card-desc {
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  color: #FFFFFF;
  margin: 0;
}

/* ========================================
   Newsletter Section
   ======================================== */

.newsletter {
  background: linear-gradient(180deg, rgba(173, 171, 255, 0.40) 0%, rgba(20, 21, 39, 0.40) 100%);
  width: 100%;
  height: 561px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .newsletter {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.newsletter-inner {
  max-width: 815px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.newsletter-text {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 8px;
}

.newsletter-subtext {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  width: 338px;
  height: 40px;
  align-items: flex-start;
  gap: 8px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  background: #ffffff;
  color: #000000;
  border-radius: 6px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-submit {
  height: 40px;
  padding: 0 24px;
  background: #56BED6;
  color: #141527;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover {
  background: #3dafc5;
}

.newsletter-message {
  padding: 10px 16px;
  border-radius: 6px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
  max-width: 338px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-message--error {
  background: #ffeded;
  color: #661d1d;
  border: 1px solid #ff4949;
}

.newsletter-message--success {
  background: #e7faf0;
  color: #085229;
  border: 1px solid #13ce66;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: #141527;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
  align-items: flex-start;
  box-sizing: border-box;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social a {
  color: #ffffff;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-column-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* How B.O.R.I.S Can Help */
.boris-help {
  width: 100%;
  background: #141527;
}

.boris-help-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px clamp(12px, 1.5vw, 12px);
}

.boris-help-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 14px;
}

.boris-help-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .boris-help-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

.boris-help-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.boris-help-desc {
  width: 376px;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 1);
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.boris-help-cta {
  width: 171px;
  margin-top: 20px;
  flex: none;
  text-decoration: none;
}

/* Feature list (right side) */
.boris-help-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.boris-help-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.boris-help-stroke {
  width: 100%;
  height: 1px;
}

.boris-help-stroke svg {
  width: 100%;
  display: block;
}

.boris-help-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.boris-help-feature-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.boris-help-feature-desc {
  color: rgba(255, 255, 255, 1);
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin: 4px 0 0;
}

.boris-help-feature-expanded .boris-help-feature-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .boris-help-right {
    width: 50%;
  }
}

/* Cards row */
.boris-help-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .boris-help-cards {
    flex-direction: row;
    justify-content: center;
  }
}

.boris-help-card {
  flex: 1;
  height: 229px;
  max-width: 100%;
  border-radius: 17px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}

.boris-help-card-filled {
  background: linear-gradient(124deg, rgba(5, 32, 61, 1) 0%, rgba(173, 171, 255, 1) 100%);
}

.boris-help-card-outline {
  border: 1px solid #ADABFF;
  background: rgba(17, 17, 17, 0.00);
  flex-direction: column;
}

.boris-help-card h3 {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  margin: 0;
}

.boris-help-card-outline h3 {
  line-height: 30px;
}

.boris-help-card-badges {
  color: #56BED6;
  font-family: "Acumin Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 8px 0 0;
}

/* Testimonial */
.boris-help-testimonial {
  width: 100%;
  height: 378px;
  margin: 60px auto 0;
  border-radius: 21px;
  background: rgba(86, 190, 214, 0.6);
  padding: 47px 92px 21px 47px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.boris-help-testimonial-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 24px;
}

.boris-help-testimonial-content {
  display: flex;
  gap: 40px;
}

.boris-help-testimonial-author {
  flex-shrink: 0;
}

.boris-help-testimonial-company {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.boris-help-testimonial-name {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 4px 0 0;
}

.boris-help-testimonial-role {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.boris-help-testimonial-quote {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.boris-help-testimonial-nav {
  display: flex;
  width: 108px;
  height: 30px;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.boris-help-testimonial-nav button {
  border: none;
  background: transparent;
  color: #FFF;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

/* Company Logos */
.logos-section {
  width: 100%;
  background: #F4F4F4;
}

.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px clamp(12px, 1.5vw, 12px);
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-img {
  height: 85px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.logo-img--large {
  height: 150px;
  max-width: 360px;
}

.logo-img--cloudflare {
  position: relative;
  top: -20px;
}


.logo-coming-soon-label {
  font-family: "Acumin Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  color: #141527;
  text-align: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 1);
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ========================
   Product Page
   ======================== */

.product-hero {
  width: 100%;
  background: #141527;
}

.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px clamp(12px, 1.5vw, 12px) 0;
}

.product-hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .product-hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.product-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-hero-heading {
  width: 396px;
  max-width: 100%;
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 24px;
}

.product-hero-subtitle {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 24px;
}

.product-hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.product-hero-text p {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.product-hero-cta {
  text-decoration: none;
  align-self: flex-start;
}

.product-hero-right {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hero-mascot {
  width: 200px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.product-hero-laptop {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 160px;
}

.product-hero-laptop-bezel {
  width: 412px;
  max-width: 100%;
  border-radius: 8px 8px 0 0;
  background: #000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.product-hero-laptop-screen {
  width: 400px;
  height: 224px;
  max-width: 100%;
  background: linear-gradient(270deg, #686868 0.07%, #141527 162.23%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-laptop-inner {
  width: 375px;
  height: 203px;
  max-width: 100%;
  background: linear-gradient(180deg, #262745 0%, #1B1C2E 100%);
  border-radius: 4px;
  margin: auto;
  overflow: hidden;
}

.product-hero-laptop-base {
  width: 100%;
}

.product-hero-laptop-base svg {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero-laptop-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hero-laptop-stand svg {
  display: block;
}

.product-hero-laptop-foot {
  margin-top: -1px;
}

.product-hero-chat {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.product-hero-chat-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.product-hero-chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
}

.product-hero-chat-msg:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-hero-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #FFF;
  border: 0.5px solid #C0C0CA;
}

.product-hero-chat-avatar-boris {
  overflow: hidden;
}

.product-hero-chat-avatar-boris img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-chat-bubble {
  flex: 1;
}

.product-hero-chat-line {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
}

.chat-name {
  font-weight: 600;
}

.chat-time {
  font-weight: 275;
}

.chat-mention {
  font-weight: 500;
}

.product-hero-divider {
  width: 100%;
  height: 1px;
  margin-top: 80px;
  display: block;
}

.product-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.product-feature-card {
  flex: 1;
  height: 199px;
  border-radius: 15px;
  border: 1px solid #56BED6;
  box-sizing: border-box;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.product-feature-card svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.product-feature-card-text {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.product-hero-devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 0;
  position: relative;
}

.product-hero-slack {
  width: 115px;
  height: 115px;
  object-fit: contain;
  position: absolute;
  left: -57px;
  top: 103px;
  z-index: 3;
}

.product-hero-keyboard {
  width: 339px;
  height: 81px;
  object-fit: contain;
  margin-left: 40px;
}

.product-hero-mouse {
  width: auto;
  height: 63px;
  object-fit: contain;
}

/* ===========================
   How Teams Use BORIS Section
   =========================== */

.teams-use {
  background: linear-gradient(180deg, rgba(86, 190, 214, 0.4) 0%, #141527 100%);
  padding: 80px 0;
  overflow: hidden;
}

.teams-use-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 1.5vw, 12px);
  overflow: visible;
}

.teams-use-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.teams-use-left {
  flex: 0 0 480px;
  max-width: 480px;
}

.teams-use-heading {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 24px;
}

.teams-use-subtitle {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 40px;
}

.teams-use-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.teams-use-item {
  border-top: 0.5px solid #FFF;
  padding: 16px 0;
}

.teams-use-item:last-child {
  border-bottom: 0.5px solid #FFF;
}

.teams-use-item-title {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.teams-use-item-desc {
  color: #FFF;
  font-family: 'Acumin Pro', 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  margin: 8px 0 0;
}

.teams-use-cta {
  display: inline-block;
  width: 196px;
  text-align: center;
  text-decoration: none;
  flex: none;
}

.teams-use-right {
  flex: 1;
  position: relative;
  display: flex;
  align-self: flex-start;
}

.teams-use-boris {
  position: absolute;
  width: 348px;
  height: 522px;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: 50% center;
  transform: scaleX(-1) translateY(-50%);
  top: 25%;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.teams-use-folder {
  position: absolute;
  width: 142px;
  height: 126px;
  aspect-ratio: 71/63;
  background: url('/images/folder.png') -148.245px -317.455px / 888.889% 561.039% no-repeat;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.teams-use-screen-outer {
  background: rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  padding: 24px 20px 24px 39px;
  width: 651px;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

.teams-use-screen-inner {
  background: linear-gradient(180deg, #262745 0%, #1B1C2E 100%);
  border-radius: 11px;
  padding: 20px;
  width: 382px;
  height: 325px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
}

.chat-italic {
  font-style: italic;
}

.chat-green {
  color: #56BED6;
}

.teams-use-chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.teams-use-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFF;
  border: 0.5px solid #C0C0CA;
}

.teams-use-chat-avatar-user {
  background: #141527;
  border: none;
}

.teams-use-chat-avatar-dev {
  background: #FFF;
  border: 0.5px solid #C0C0CA;
}

.teams-use-chat-avatar-boris {
  background: #FFF;
  border: 0.5px solid #C0C0CA;
  overflow: hidden;
}

.teams-use-chat-avatar-boris img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teams-use-chat-bubble {
  flex: 1;
}

.teams-use-chat-line {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
}

.teams-use-chat-line .chat-name {
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
}

.teams-use-chat-line .chat-time {
  font-weight: 275;
}

.teams-use-chat-list {
  margin: 4px 0 0;
  padding: 0 0 0 16px;
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 10px;
  line-height: 15px;
  list-style: none;
}

.teams-use-chat-list li {
  font-size: 10px;
  line-height: 15px;
}

/* AWS logo on corner of blue screen */
.teams-use-aws-corner {
  position: absolute;
  bottom: -100px;
  right: -30px;
  width: 174.343px;
  height: 174.343px;
  aspect-ratio: 1/1;
  background: url(/images/aws.png) 50% / cover no-repeat;
  transform: rotate(26.229deg);
  transform-origin: 100% 100%;
  pointer-events: none;
}

/* Slack logo at bottom of blue screen (How teams use BORIS section) */
.teams-use-slack {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 115px;
  height: 115px;
  transform: rotate(-14.875deg);
  transform-origin: 0 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Second blue screen (highlighted messages container) */
.teams-use-screen-second {
  width: 420px;
  max-width: 100%;
  height: 72px;
  border-radius: 11px;
  background: var(--Screen-gradient, linear-gradient(180deg, #262745 0%, #1B1C2E 100%));
  box-sizing: border-box;
  margin-top: 12px;
  margin-left: auto;
  padding: 12px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.teams-use-chat-msg-highlight {
  background: rgba(27, 28, 46, 0.8);
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}

.teams-use-screen-second .teams-use-chat-msg-highlight {
  margin-top: 0;
  padding: 6px 12px;
}

.teams-use-screen-second .teams-use-chat-msg-highlight:first-child {
  margin-top: 0;
}

.teams-use-chat-msg-last {
  margin-left: -20px;
}

.teams-use-screen-third {
  width: 261px;
  max-width: 100%;
  height: 72px;
  border-radius: 11px;
  background: var(--Screen-gradient, linear-gradient(180deg, #262745 0%, #1B1C2E 100%));
  box-sizing: border-box;
  margin-top: 12px;
  margin-left: 0;
  padding: 12px 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.teams-use-screen-third .teams-use-chat-msg-highlight {
  margin-top: 0;
  padding: 6px 12px;
}

@media (max-width: 768px) {
  .teams-use-content {
    flex-direction: column;
  }

  .teams-use-left {
    max-width: 100%;
  }

  .teams-use-right {
    max-width: 100%;
  }
}

/* ===========================
   How BORIS Delivers Answers
   =========================== */

.boris-answers {
  background: #141527;
  padding: 80px 0;
}

.boris-answers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 1.5vw, 12px);
}

.boris-answers-inner .boris-help-testimonial {
  height: auto;
  padding: 47px;
  margin: 120px 0;
}

.boris-answers-inner .boris-help-testimonial blockquote {
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding: 0;
}

.boris-answers-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .boris-answers-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

.boris-answers-left {
  flex-shrink: 0;
  width: 376px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.boris-answers-cta {
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}

.boris-answers-right .boris-help-stroke {
  margin-top: 20px;
}

.boris-answers-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 14px;
  max-width: 376px;
}

.boris-answers-desc {
  width: 376px;
  max-width: 100%;
  margin: 0;
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.boris-answers-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 726px;
}

.boris-answers-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.boris-answers-step-title {
  color: #92EBFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
}

.boris-answers-step-body {
  max-width: 726px;
}

.boris-answers-step-subtitle {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 4px;
}

.boris-answers-step-text {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

/* ===========================
   Security Page
   =========================== */

.security-hero {
  width: 100%;
  min-height: 748px;
  background: linear-gradient(180deg, rgba(86, 190, 214, 0.40) 0%, rgba(20, 21, 39, 0.40) 100%), #141527;
}

.security-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px clamp(12px, 1.5vw, 12px) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-hero-heading {
  color: #FFF;
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
  max-width: 1101px;
}

.security-hero-mascot {
  width: 590px;
  height: 483px;
  max-width: 100%;
  aspect-ratio: 193/158;
  background: url('/images/boris-flying.png') 0px -175px / 100% 183.23% no-repeat;
  margin-top: 0;
}

.security-hero-subtitle {
  color: #FFF;
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 40px 0 0;
  max-width: 1103px;
}

.security-hero-desc {
  color: #FFF;
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin: 8px 0 0;
  max-width: 1101px;
}

/* Security Principles */
.security-principles {
  width: 100%;
  background: #141527;
  padding: 80px 0;
}

.security-principles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.security-principles-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0 0 16px;
}

.security-principles-desc {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin: 0 0 48px;
}

.security-principles-cards {
  display: flex;
  gap: 20px;
}

.security-principles-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  border-radius: 11px;
  border: 1px solid #56BED6;
  background: transparent;
  gap: 20px;
}

.security-principles-card svg {
  flex-shrink: 0;
}

.security-principles-card-text {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* Security Testimonial */
.security-testimonial {
  width: 100%;
  background: #141527;
  padding: 0 0 80px;
}

.security-testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.security-testimonial-box {
  flex-direction: row;
  height: auto;
  padding: 47px;
  gap: 40px;
  align-items: flex-start;
}

.security-testimonial-left {
  width: 237px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.security-testimonial-left .boris-help-testimonial-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
  margin: 0;
  white-space: nowrap;
}

.security-testimonial-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 93px;
}

.security-testimonial-box .boris-help-testimonial-author {
  width: 230px;
}

.security-testimonial-box .boris-help-testimonial-company,
.security-testimonial-box .boris-help-testimonial-name,
.security-testimonial-box .boris-help-testimonial-role {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}

.security-testimonial-box .boris-help-testimonial-nav {
  align-self: flex-start;
}

.index-security-testimonial-right {
  padding-top: 57px;
}

/* Security CTA */
.security-cta {
  width: 100%;
  min-height: 561px;
  background: linear-gradient(180deg, rgba(86, 190, 214, 0.40) 0%, rgba(20, 21, 39, 0.40) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.security-cta-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
}

.security-cta-subtitle {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  margin: 16px 0 0;
}

.security-cta-desc {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin: 12px 0 0;
  max-width: 700px;
}

.security-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #56BED6;
  color: #141527;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  transition: background 0.2s;
}

.security-cta-btn:hover {
  background: #3dafc5;
}

/* About Page */
.about-hero {
  width: 100%;
  min-height: 748px;
  background: linear-gradient(180deg, rgba(86, 190, 214, 0.40) 0%, rgba(20, 21, 39, 0.40) 100%);
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 748px;
  display: flex;
  flex-direction: column;
}

.about-hero-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
  padding-top: 145px;
}

.about-hero-image-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.about-hero-image {
  width: 591px;
  height: 887px;
  aspect-ratio: 591/887;
  object-fit: contain;
  display: block;
  margin-top: -34px;
}

.about-hero-tagline {
  position: absolute;
  right: 0;
  bottom: 40px;
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 250;
  line-height: 38px;
  text-align: right;
  width: 347px;
  margin: 0;
}

/* About Content */
.about-content {
  width: 100%;
  background: #141527;
  padding: 80px 0;
}

.about-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.about-content-left {
  flex-shrink: 0;
}

.about-content-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
}

.about-content-right {
  max-width: 723px;
  margin-left: auto;
}

.about-content-text {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  margin: 0 0 20px;
}

.about-content-text-bold {
  font-weight: 500;
}

.about-content-cta {
  display: inline-flex;
  margin-top: 20px;
  flex: unset;
  padding: 12px 32px;
}

/* About Team */
.about-team {
  width: 100%;
  background: #141527;
  padding: 80px 0;
}

.about-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-team-header {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

.about-team-header-left {
  flex-shrink: 0;
  width: 237px;
}

.about-team-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
}

.about-team-subtitle {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin: 16px 0 0;
}

.about-team-header-right {
  flex: 1;
  margin-left: auto;
}

.about-team-quote {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

.about-team-quote-author {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin: 16px 0 0;
}

.about-team-divider {
  margin-top: 40px;
}

.about-team-member {
  display: grid;
  grid-template-columns: 237px 1fr;
  gap: 0 40px;
  padding: 20px 0 60px;
  align-items: start;
}

.about-team-member-photo {
  width: 178px;
  height: 182px;
  grid-row: 1 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.about-team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-member-meta {
  margin-bottom: 12px;
}

.about-team-member-bio-col {
  flex: 1;
}

.about-team-member-name {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
  letter-spacing: 1px;
  margin: 0;
}

.about-team-member-role {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 4px 0 0;
}

.about-team-member-arrow {
  vertical-align: middle;
  margin-left: 4px;
}

.about-team-member-bio {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin: 16px 0 0;
}

.about-team-member-bio:first-child {
  margin-top: 0;
}

/* About CTA */
.about-cta {
  width: 100%;
  min-height: 561px;
  background: linear-gradient(180deg, rgba(173, 171, 255, 0.40) 0%, rgba(20, 21, 39, 0.40) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.about-cta-heading {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
}

.about-cta-subtitle {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  margin: 16px 0 0;
}

.about-cta-desc {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin: 12px 0 0;
  max-width: 700px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #56BED6;
  color: #141527;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  transition: background 0.2s;
}

.about-cta-btn:hover {
  background: #3dafc5;
}

/* Insights Page */
.insights-hero {
  width: 100%;
  background: linear-gradient(180deg, rgba(20, 21, 39, 0.40) 0%, rgba(86, 190, 214, 0.40) 100%), #141527;
}

.insights-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 160px clamp(12px, 1.5vw, 12px) 200px;
}

.insights-articles {
  width: 100%;
  background: #0E0F1E;
  padding: 0 0 80px;
}

.insights-articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-hero-heading {
  color: #FFF;
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 55px;
  margin: 0;
  max-width: 1101px;
}

.insights-hero-subtitle {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  margin: 24px 0 0;
}

.insights-hero-desc {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin: 16px 0 0;
  max-width: 1000px;
}

.insights-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.insights-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 20px;
  background: #56BED6;
  color: #141527;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.insights-articles-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.insights-featured {
  max-width: 352px;
  flex-shrink: 0;
}

.insights-cover {
  margin-top: 240px;
}

.insights-cover-image {
  width: 727px;
  height: 462px;
  border-radius: 16px;
  background: #D9D9D9;
}

.insights-featured-image {
  position: relative;
  width: 352px;
  height: 281px;
}

.insights-featured-image img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 352px;
  height: auto;
}

.insights-featured-meta {
  position: absolute;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.insights-label-latest {
  color: #C0C0CA;
  font-family: "Acumin Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.insights-label-read {
  color: #56BED6;
  font-family: "Acumin Pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.insights-featured-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 16px 0 0;
}

.insights-featured-sell {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 12px 0 0;
}

.insights-featured-intro {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin: 12px 0 0;
}

.insights-featured-btn {
  display: inline-flex;
  margin-top: 20px;
  flex: unset;
  padding: 10px 32px;
}

/* ===========================
   COMPLIANCE BADGES
   =========================== */

.compliance-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 24px 32px;
  border: 1px solid rgba(86, 190, 214, 0.3);
  border-radius: 12px;
  background: rgba(86, 190, 214, 0.05);
}

.compliance-badges-inline {
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 8px;
}

.compliance-badges-title {
  color: #FFF;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.7;
}

.compliance-badges-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.compliance-badge {
  color: #56BED6;
  font-family: "Acumin Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===========================
   CONTACT POPUP
   =========================== */

.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.contact-popup {
  background: #FFF;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.contact-popup-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.contact-popup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-popup-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #141527;
}

.contact-popup-input,
.contact-popup-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #141527;
  background: #FFF;
  box-sizing: border-box;
  outline: none;
}

.contact-popup-input:focus,
.contact-popup-textarea:focus {
  border-color: #56BED6;
}

.contact-popup-input::placeholder,
.contact-popup-textarea::placeholder {
  color: #A0A0A0;
}

.contact-popup-textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
}

.contact-popup-submit {
  width: 100%;
  padding: 12px;
  background: #141527;
  color: #FFF;
  border: none;
  border-radius: 6px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-popup-submit:hover {
  background: #1e2040;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
  /* Global */
  .container-site,
  .container-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Navbar */
  .navbar-inner {
    height: 109px;
  }

  .btn-contact {
    width: auto;
    height: 32px;
    padding: 6px 24px;
    font-size: 14px;
    color: #05203D;
    background: transparent;
    border: 1px solid #05203D;
    border-radius: 8px;
    display: inline-flex;
    flex: none;
  }

  .btn-contact:hover {
    background: rgba(5, 32, 61, 0.05);
  }

  .navbar-inner {
    overflow: visible;
  }

  /* Home hero */
  .hero {
    padding-top: 109px;
    min-height: auto;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-illustration {
    order: 1;
  }

  .hero-grid {
    order: 2;
    align-self: flex-start;
  }

  .hero-mascot {
    order: 3;
  }

  .hero-heading {
    font-size: 28px;
    line-height: 36px;
    width: 100%;
  }

  .hero-heading-br {
    display: inline;
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-checklist {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-illustration {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .hero-mascot {
    display: none;
  }

  .hero-bottom-row {
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
  }

  .hero-mascot-mobile {
    display: none;
  }

  .hero-ctas-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;
    width: auto;
    flex: 0 0 auto;
  }

  .hero-ctas-mobile .btn-outline {
    height: 32px;
    padding: 6px 24px;
    font-size: 16px;
    flex: 0 0 auto;
  }

  /* How it works */
  .how-it-works-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .how-it-works-description {
    font-size: 16px;
    line-height: 24px;
  }

  .how-it-works-step-title {
    font-size: 16px;
    line-height: 24px;
  }

  .how-it-works-step-text {
    font-size: 16px;
    line-height: 24px;
  }

  .how-it-works-cta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .how-it-works-visual {
    display: none;
  }

  .how-it-works-step-visual {
    display: block;
    margin: 16px 0;
  }

  .how-it-works-step-visual .context-box,
  .how-it-works-step-visual .interaction-box,
  .how-it-works-step-visual .evidence-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 42px 8px 8px;
  }

  .how-it-works-step-visual .context-box-screen,
  .how-it-works-step-visual .interaction-box-screen,
  .how-it-works-step-visual .evidence-box-screen {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px;
  }

  .how-it-works-step-visual .context-box-title,
  .how-it-works-step-visual .context-box-steps {
    width: 100%;
  }

  .how-it-works-step-visual .interaction-msg {
    width: 100%;
  }

  /* Slowed down */
  .slowed-down-inner {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .slowed-down-heading {
    font-size: 28px;
    line-height: 36px;
    white-space: normal;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .slowed-down-cards {
    flex-direction: column;
  }

  .slowed-down-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    border-radius: 0;
  }

  .slowed-down-card-stat {
    font-size: 20px;
    line-height: 28px;
  }

  /* Boris help */
  .boris-help-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .boris-help-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-help-top {
    flex-direction: column;
  }

  .boris-help-left,
  .boris-help-right {
    width: 100%;
  }

  .boris-help-cards {
    flex-direction: column;
  }

  .boris-help-card {
    width: 100%;
    height: auto;
    min-height: 140px;
  }

  .boris-help-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .boris-help-feature-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-help-testimonial {
    padding: 24px;
    height: auto;
  }

  .boris-help-testimonial-quote {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-help-testimonial-company,
  .boris-help-testimonial-name,
  .boris-help-testimonial-role {
    font-size: 16px;
    line-height: 24px;
  }

  /* Logos */
  .logos-inner {
    padding: 32px 20px;
    gap: 24px;
  }

  .logos-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .logo-img {
    height: 70px;
    max-width: 220px;
  }

  .logo-img--large {
    height: 120px;
    max-width: 300px;
  }

  .logo-coming-soon-label {
    font-size: 20px;
    line-height: 28px;
  }

  .logo-img--cloudflare {
    top: 0;
  }

  /* Newsletter */
  .newsletter {
    height: auto;
    padding: 60px 0;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 24px;
  }

  .newsletter-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .newsletter-text,
  .newsletter-subtext {
    font-size: 16px;
    line-height: 24px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 338px;
    height: 40px;
    margin: 0 auto;
  }

  .newsletter-input {
    font-size: 16px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    width: 100%;
  }

  /* Product hero */
  .product-hero-content {
    flex-direction: column;
  }

  .product-hero-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .product-hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .product-hero-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .product-hero-left,
  .product-hero-right {
    width: 100%;
  }

  .product-hero-devices {
    flex-direction: column;
    align-items: center;
  }

  .product-hero-mouse {
    display: none;
  }

  .product-hero-laptop,
  .product-hero-chat {
    width: 100%;
    max-width: 100%;
  }

  /* Product features */
  .product-features {
    flex-direction: column;
  }

  .product-feature-card {
    width: 100%;
  }

  .product-feature-card-text {
    font-size: 16px;
    line-height: 24px;
  }

  /* Teams use */
  .teams-use-content {
    flex-direction: column;
  }

  .teams-use-left,
  .teams-use-right {
    width: 100%;
  }

  .teams-use-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .teams-use-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .teams-use-item-title {
    font-size: 16px;
    line-height: 24px;
  }

  .teams-use-item-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .teams-use-screen-outer {
    width: 100%;
    padding: 16px;
  }

  .teams-use-boris,
  .teams-use-slack,
  .teams-use-aws-corner,
  .teams-use-folder {
    display: none;
  }

  /* Boris answers */
  .boris-answers {
    padding: 40px 0;
  }

  .boris-answers-top {
    flex-direction: column;
    gap: 24px;
  }

  .boris-answers-left {
    display: contents;
  }

  .boris-answers-heading {
    order: 1;
  }

  .boris-answers-desc {
    order: 2;
  }

  .boris-answers-right {
    width: 100%;
    order: 3;
  }

  .boris-answers-cta {
    order: 4;
    margin-top: 16px;
  }

  .boris-answers-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .boris-answers-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-answers-step-title {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-answers-step-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-answers-step-text {
    font-size: 16px;
    line-height: 24px;
  }

  .boris-answers-inner .boris-help-testimonial {
    margin: 40px 0;
  }

  /* Security hero */
  .security-hero-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .security-hero-mascot {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    background-position: center center;
    background-size: contain;
  }

  .security-hero-subtitle {
    margin-top: -60px;
  }

  .security-hero-inner {
    padding: 120px 20px 40px;
  }

  /* Security principles */
  .security-principles {
    padding: 40px 0;
  }

  .security-principles-heading {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .security-principles-desc {
    text-align: center;
  }

  .security-principles-cards {
    flex-direction: column;
  }

  /* Security testimonial */
  .security-testimonial-box {
    flex-direction: column;
    padding: 24px;
  }

  .security-testimonial-left {
    width: 100%;
  }

  .security-testimonial-left .boris-help-testimonial-title {
    width: 100%;
  }

  .security-testimonial-right {
    padding-top: 0;
  }

  /* Security CTA */
  .security-cta {
    min-height: auto;
  }

  .security-cta-inner {
    padding: 60px 20px;
  }

  .security-cta-heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* About hero */
  .about-hero {
    min-height: auto;
  }

  .about-hero-inner {
    min-height: auto;
    padding: 0 20px;
  }

  .about-hero-heading {
    font-size: 28px;
    line-height: 36px;
    padding-top: 160px;
  }

  .about-hero-image-wrap {
    flex-direction: column;
    align-items: center;
  }

  .about-hero-image {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .about-hero-tagline {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    padding: 20px 0 40px;
  }

  /* About content */
  .about-content-inner {
    flex-direction: column;
    gap: 24px;
  }

  .about-content-title {
    font-size: 28px;
    line-height: 36px;
  }

  .about-content-text {
    font-size: 16px;
    line-height: 24px;
  }

  .about-content-right {
    max-width: 100%;
    margin-left: 0;
  }

  /* About team */
  .about-team-header {
    flex-direction: column;
    gap: 24px;
  }

  .about-team-header-left {
    width: 100%;
  }

  .about-team-title {
    font-size: 28px;
    line-height: 36px;
  }

  .about-team-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .about-team-quote {
    font-size: 16px;
    line-height: 24px;
  }

  .about-team-quote-author {
    font-size: 16px;
    line-height: 24px;
  }

  .about-team-member {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-team-member-photo {
    width: 120px;
    height: 123px;
    grid-row: auto;
  }

  .about-team-member-bio-col {
    width: 100%;
  }

  .about-team-member-name {
    font-size: 16px;
    line-height: 24px;
  }

  .about-team-member-role {
    font-size: 16px;
    line-height: 24px;
  }

  .about-team-member-bio {
    font-size: 16px;
    line-height: 24px;
  }

  /* About CTA */
  .about-cta {
    min-height: auto;
  }

  .about-cta-inner {
    padding: 60px 20px;
  }

  .about-cta-heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Insights hero */
  .insights-hero-inner {
    padding: 120px 20px 140px;
  }

  .insights-hero-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .insights-hero-tags {
    gap: 8px;
  }

  .insights-tag {
    padding: 6px 14px;
    font-size: 12px;
  }

  /* Insights articles */
  .insights-articles-row {
    flex-direction: column;
    gap: 40px;
  }

  .insights-featured {
    max-width: 100%;
  }

  .insights-featured-image {
    width: 100%;
  }

  .insights-featured-image img {
    width: 100%;
  }

  .insights-cover {
    margin-top: 0;
    width: 100%;
  }

  .insights-cover-image {
    width: 100%;
    height: 240px;
  }
}

/* --- Tablet (768px - 1023px) --- */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Security principles - 2 columns */
  .security-principles-cards {
    flex-wrap: wrap;
  }

  .security-principles-card {
    flex: 1 1 calc(50% - 10px);
  }

  /* Security headings */
  .security-hero-heading,
  .security-cta-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .security-principles-heading {
    font-size: 36px;
    line-height: 44px;
  }

  /* About hero */
  .about-hero-image {
    width: 400px;
    height: auto;
  }

  .about-hero-heading,
  .about-cta-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .about-content-title,
  .about-team-title {
    font-size: 36px;
    line-height: 44px;
  }

  /* About team member - keep row but smaller photo */
  .about-team-member-photo {
    width: 140px;
    height: 144px;
  }

  /* Insights */
  .insights-hero-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .insights-articles-row {
    gap: 24px;
  }

  .insights-cover-image {
    width: 100%;
    height: 360px;
  }

  .insights-cover {
    flex: 1;
  }

  /* Product hero */
  .product-hero-heading {
    font-size: 36px;
    line-height: 44px;
  }

  /* Teams use */
  .teams-use-heading {
    font-size: 36px;
    line-height: 44px;
  }

  /* Boris answers */
  .boris-answers-heading {
    font-size: 36px;
    line-height: 44px;
  }
}
